Skip to content

Commit 6a6b1cf

Browse files
committed
.
1 parent 6055bed commit 6a6b1cf

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

README.md

+13-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,22 @@
11
# OAuth1
22

33
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
513

614
```go
715
import "github.com/kataras/iris/v12/x/client"
816
```
917

1018
```go
11-
var myClient = client.New(client.BaseURL("https://apis.garmin.com"))
19+
var myClient = client.New(client.BaseURL("https://xxx.xxx.com"))
1220
```
1321

1422
```go
@@ -19,9 +27,9 @@ var config = &oauth1.Config{
1927
ConsumerSecret: "xxx",
2028
CallbackURL: "http://localhost:8080/callback",
2129
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",
2533
},
2634
}
2735
```

0 commit comments

Comments
 (0)