We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca335ad commit 8af489aCopy full SHA for 8af489a
changelog
@@ -3,6 +3,7 @@
3
* add optional "User-Agent" config option to use while making http calls
4
* refactor usage of grant_type [authorization_code|refresh_token|password|etc]
5
* add Genius.com API authentication (OAuth2)
6
+ * fix GitHub API
7
8
[2.5.3]
9
* fix - do not send two Content-Type header in async requests
scribejava-apis/src/main/java/com/github/scribejava/apis/GitHubApi.java
@@ -27,7 +27,7 @@ public static GitHubApi instance() {
27
28
@Override
29
public Verb getAccessTokenVerb() {
30
- return Verb.GET;
+ return Verb.POST;
31
}
32
33
0 commit comments