You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Use standard library `context` ([c0a405](https://github.com/dghubble/oauth1/commit/c0a405baf29f5ed2616bc1ef6b778532c960aa5b))
10
+
* Requires Go 1.7+
11
+
* Add `xing` package with a provider `Endpoint` ([#10](https://github.com/dghubble/oauth1/pull/10))
12
+
* Add status code checks so server errors are clearer ([09fded](https://github.com/dghubble/oauth1/commit/b0d5c93a5292844f3fd568893ce4e12bdcdb79ae))
13
+
* Move confirmed check after token check so errors are clearer ([#8](https://github.com/dghubble/oauth1/pull/8))
14
+
15
+
## v0.4.0
4
16
5
17
* Add a Signer field to the Config to allow custom Signer implementations.
6
18
* Use the HMACSigner by default. This provides the same signing behavior as in previous versions (HMAC-SHA1).
@@ -9,14 +21,14 @@
9
21
* Change `Signer` to be a signer interface.
10
22
* Remove the old Signer methods `SetAccessTokenAuthHeader`, `SetRequestAuthHeader`, and `SetRequestTokenAuthHeader`.
11
23
12
-
## v0.3.0 (2015-09-13)
24
+
## v0.3.0
13
25
14
26
* Added `NoContext` which may be used in most cases.
15
27
* Allowed Transport Base http.RoundTripper to be set through a ctx.
16
28
* Changed `NewClient` to require a context.Context.
17
29
* Changed `Config.Client` to require a context.Context.
18
30
19
-
## v.0.2.0 (2015-08-30)
31
+
## v.0.2.0
20
32
21
33
* Improved OAuth 1 spec compliance and test coverage.
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -111,7 +111,7 @@ An `Endpoint` groups an OAuth provider's token and authorization URL endpoints.E
111
111
112
112
A `Config` stores a consumer application's consumer key and secret, the registered callback URL, and the `Endpoint` to which the consumer is registered. It provides OAuth1 authorization flow methods.
113
113
114
-
An OAuth1 `Token` is an access token which can be used to make signed requests on behalf of a user. See [Authorized Requests](#Authorized Requests) for details.
114
+
An OAuth1 `Token` is an access token which can be used to make signed requests on behalf of a user. See [Authorized Requests](#authorized-requests) for details.
115
115
116
116
If you've used the [golang.org/x/oauth2](https://godoc.org/golang.org/x/oauth2) package for OAuth2 before, this organization should be familiar.
0 commit comments