File tree 1 file changed +13
-5
lines changed
1 file changed +13
-5
lines changed Original file line number Diff line number Diff line change 1
1
# OAuth1
2
2
3
3
Modified to export some usefull methods in order to not re-create an http.Client instance
4
- for each authorized user. Forked from [ dghubble/oauth1)] ( https://github.com/dghubble/oauth1 ) .
4
+ for each authorized user. Forked from [ dghubble/oauth1] ( https://github.com/dghubble/oauth1 ) .
5
+
6
+ ## Install
7
+
8
+ ``` sh
9
+ $ go get github.com/iris-contrib/oauth1@latest
10
+ ```
11
+
12
+ ## Usage
5
13
6
14
``` go
7
15
import " github.com/kataras/iris/v12/x/client"
8
16
```
9
17
10
18
``` go
11
- var myClient = client.New (client.BaseURL (" https://apis.garmin .com" ))
19
+ var myClient = client.New (client.BaseURL (" https://xxx.xxx .com" ))
12
20
```
13
21
14
22
``` go
@@ -19,9 +27,9 @@ var config = &oauth1.Config{
19
27
ConsumerSecret : " xxx" ,
20
28
CallbackURL : " http://localhost:8080/callback" ,
21
29
Endpoint : oauth1.Endpoint {
22
- RequestTokenURL: " https://connectapi.garmin .com/oauth-service/oauth/request_token" ,
23
- AuthorizeURL: " https://connect.garmin .com/oauthConfirm" ,
24
- AccessTokenURL: " https://connectapi.garmin .com/oauth-service/oauth/access_token" ,
30
+ RequestTokenURL: " https://xxx.xxx .com/oauth-service/oauth/request_token" ,
31
+ AuthorizeURL: " https://xxx.xxx .com/oauthConfirm" ,
32
+ AccessTokenURL: " https://xxx.xxx .com/oauth-service/oauth/access_token" ,
25
33
},
26
34
}
27
35
```
You can’t perform that action at this time.
0 commit comments