@@ -17,10 +17,11 @@ import (
17
17
func (d * Terabox ) request (furl string , method string , callback base.ReqCallback , resp interface {}) ([]byte , error ) {
18
18
req := base .RestyClient .R ()
19
19
req .SetHeaders (map [string ]string {
20
- "Cookie" : d .Cookie ,
21
- "Accept" : "application/json, text/plain, */*" ,
22
- "Referer" : "https://www.terabox.com/" ,
23
- "User-Agent" : base .UserAgent ,
20
+ "Cookie" : d .Cookie ,
21
+ "Accept" : "application/json, text/plain, */*" ,
22
+ "Referer" : "https://www.terabox.com/" ,
23
+ "User-Agent" : base .UserAgent ,
24
+ "X-Requested-With" : "XMLHttpRequest" ,
24
25
})
25
26
req .SetQueryParam ("app_id" , "250528" )
26
27
req .SetQueryParam ("web" , "1" )
@@ -41,13 +42,17 @@ func (d *Terabox) request(furl string, method string, callback base.ReqCallback,
41
42
42
43
func (d * Terabox ) get (pathname string , params map [string ]string , resp interface {}) ([]byte , error ) {
43
44
return d .request ("https://www.terabox.com" + pathname , http .MethodGet , func (req * resty.Request ) {
44
- req .SetQueryParams (params )
45
+ if params != nil {
46
+ req .SetQueryParams (params )
47
+ }
45
48
}, resp )
46
49
}
47
50
48
51
func (d * Terabox ) post (pathname string , params map [string ]string , data interface {}, resp interface {}) ([]byte , error ) {
49
52
return d .request ("https://www.terabox.com" + pathname , http .MethodPost , func (req * resty.Request ) {
50
- req .SetQueryParams (params )
53
+ if params != nil {
54
+ req .SetQueryParams (params )
55
+ }
51
56
req .SetBody (data )
52
57
}, resp )
53
58
}
@@ -73,6 +78,9 @@ func (d *Terabox) getFiles(dir string) ([]File, error) {
73
78
if err != nil {
74
79
return nil , err
75
80
}
81
+ if resp .Errno == 9000 {
82
+ return nil , fmt .Errorf ("terabox is not yet available in this area" )
83
+ }
76
84
if len (resp .List ) == 0 {
77
85
break
78
86
}
0 commit comments