Reddit OAuth2 API circular redirect
I am attempting to send a POST authorization request to the Reddit API to get an access token, following this documentation: https://github.com/reddit-archive/reddit/wiki/oauth2
I am getting the following exception thrown when I execute the request:
Caused by: org.apache.http.client.CircularRedirectException: Circular redirect to 'https://www.reddit.com/api/v1/access_token'
Here is the Kotlin code which uses Apache Commons HTTP:
@Test
fun testOauthAuthenticationManual() {
val client = DefaultHttpClient()
client.redirectStrategy = LaxRedirectStrategy()
val post = HttpPost("https://www.reddit.com/api/v1/access_token")
post.addHeader("Authorization", "Basic a3E0RWVocURGeWVoUWc6UVYyYjU0cldDeTJ4aHNZc292ZXNTcVVQc2tJ")
post.addHeader("Content-Type", "application/x-www-form-urlencoded")
post.addHeader("User-Agent", "Just testing")
post.addHeader("Host", "reddit.com")
val parameters = listOf<NameValuePair>(
BasicNameValuePair("grant_type", "authorization_code"),
BasicNameValuePair("redirect_uri", "http://address.co.uk"),
BasicNameValuePair("code", "2dYqDpjs6lA7FVvUILgDaxKS2ww"))
post.entity = UrlEncodedFormEntity(parameters, "UTF-8")
try {
val response = client.execute(post)
if (response.statusLine.statusCode == 200) {
// continue
} else {
throw HttpClientException(response.statusLine.reasonPhrase)
}
} catch (e: IOException) {
throw HttpClientException("Could not execute HTTP request: ", e)
}
}
What am I doing wrong in setting up my request?
java apache http kotlin reddit
add a comment |
I am attempting to send a POST authorization request to the Reddit API to get an access token, following this documentation: https://github.com/reddit-archive/reddit/wiki/oauth2
I am getting the following exception thrown when I execute the request:
Caused by: org.apache.http.client.CircularRedirectException: Circular redirect to 'https://www.reddit.com/api/v1/access_token'
Here is the Kotlin code which uses Apache Commons HTTP:
@Test
fun testOauthAuthenticationManual() {
val client = DefaultHttpClient()
client.redirectStrategy = LaxRedirectStrategy()
val post = HttpPost("https://www.reddit.com/api/v1/access_token")
post.addHeader("Authorization", "Basic a3E0RWVocURGeWVoUWc6UVYyYjU0cldDeTJ4aHNZc292ZXNTcVVQc2tJ")
post.addHeader("Content-Type", "application/x-www-form-urlencoded")
post.addHeader("User-Agent", "Just testing")
post.addHeader("Host", "reddit.com")
val parameters = listOf<NameValuePair>(
BasicNameValuePair("grant_type", "authorization_code"),
BasicNameValuePair("redirect_uri", "http://address.co.uk"),
BasicNameValuePair("code", "2dYqDpjs6lA7FVvUILgDaxKS2ww"))
post.entity = UrlEncodedFormEntity(parameters, "UTF-8")
try {
val response = client.execute(post)
if (response.statusLine.statusCode == 200) {
// continue
} else {
throw HttpClientException(response.statusLine.reasonPhrase)
}
} catch (e: IOException) {
throw HttpClientException("Could not execute HTTP request: ", e)
}
}
What am I doing wrong in setting up my request?
java apache http kotlin reddit
301 is more an information than an error, it's possible the only thing you're doing wrong is not following that redirection. You should probably check the Location field of the 301 response to see if it's expected though (e.g. you app'sredirect_uri).
– Aaron
Dec 27 at 13:32
@Aaron TheLocationfield of the 301 response has the same uri: reddit.com/api/v1/access_token
– crm
Dec 27 at 13:59
Hmmm yeah that's definitely weird. I can't see anything wrong with your code, I guess you'll have to wait for someone familiar with reddit's OAuth
– Aaron
Dec 27 at 14:10
add a comment |
I am attempting to send a POST authorization request to the Reddit API to get an access token, following this documentation: https://github.com/reddit-archive/reddit/wiki/oauth2
I am getting the following exception thrown when I execute the request:
Caused by: org.apache.http.client.CircularRedirectException: Circular redirect to 'https://www.reddit.com/api/v1/access_token'
Here is the Kotlin code which uses Apache Commons HTTP:
@Test
fun testOauthAuthenticationManual() {
val client = DefaultHttpClient()
client.redirectStrategy = LaxRedirectStrategy()
val post = HttpPost("https://www.reddit.com/api/v1/access_token")
post.addHeader("Authorization", "Basic a3E0RWVocURGeWVoUWc6UVYyYjU0cldDeTJ4aHNZc292ZXNTcVVQc2tJ")
post.addHeader("Content-Type", "application/x-www-form-urlencoded")
post.addHeader("User-Agent", "Just testing")
post.addHeader("Host", "reddit.com")
val parameters = listOf<NameValuePair>(
BasicNameValuePair("grant_type", "authorization_code"),
BasicNameValuePair("redirect_uri", "http://address.co.uk"),
BasicNameValuePair("code", "2dYqDpjs6lA7FVvUILgDaxKS2ww"))
post.entity = UrlEncodedFormEntity(parameters, "UTF-8")
try {
val response = client.execute(post)
if (response.statusLine.statusCode == 200) {
// continue
} else {
throw HttpClientException(response.statusLine.reasonPhrase)
}
} catch (e: IOException) {
throw HttpClientException("Could not execute HTTP request: ", e)
}
}
What am I doing wrong in setting up my request?
java apache http kotlin reddit
I am attempting to send a POST authorization request to the Reddit API to get an access token, following this documentation: https://github.com/reddit-archive/reddit/wiki/oauth2
I am getting the following exception thrown when I execute the request:
Caused by: org.apache.http.client.CircularRedirectException: Circular redirect to 'https://www.reddit.com/api/v1/access_token'
Here is the Kotlin code which uses Apache Commons HTTP:
@Test
fun testOauthAuthenticationManual() {
val client = DefaultHttpClient()
client.redirectStrategy = LaxRedirectStrategy()
val post = HttpPost("https://www.reddit.com/api/v1/access_token")
post.addHeader("Authorization", "Basic a3E0RWVocURGeWVoUWc6UVYyYjU0cldDeTJ4aHNZc292ZXNTcVVQc2tJ")
post.addHeader("Content-Type", "application/x-www-form-urlencoded")
post.addHeader("User-Agent", "Just testing")
post.addHeader("Host", "reddit.com")
val parameters = listOf<NameValuePair>(
BasicNameValuePair("grant_type", "authorization_code"),
BasicNameValuePair("redirect_uri", "http://address.co.uk"),
BasicNameValuePair("code", "2dYqDpjs6lA7FVvUILgDaxKS2ww"))
post.entity = UrlEncodedFormEntity(parameters, "UTF-8")
try {
val response = client.execute(post)
if (response.statusLine.statusCode == 200) {
// continue
} else {
throw HttpClientException(response.statusLine.reasonPhrase)
}
} catch (e: IOException) {
throw HttpClientException("Could not execute HTTP request: ", e)
}
}
What am I doing wrong in setting up my request?
java apache http kotlin reddit
java apache http kotlin reddit
edited Dec 27 at 14:24
asked Dec 27 at 13:16
crm
1,9951349101
1,9951349101
301 is more an information than an error, it's possible the only thing you're doing wrong is not following that redirection. You should probably check the Location field of the 301 response to see if it's expected though (e.g. you app'sredirect_uri).
– Aaron
Dec 27 at 13:32
@Aaron TheLocationfield of the 301 response has the same uri: reddit.com/api/v1/access_token
– crm
Dec 27 at 13:59
Hmmm yeah that's definitely weird. I can't see anything wrong with your code, I guess you'll have to wait for someone familiar with reddit's OAuth
– Aaron
Dec 27 at 14:10
add a comment |
301 is more an information than an error, it's possible the only thing you're doing wrong is not following that redirection. You should probably check the Location field of the 301 response to see if it's expected though (e.g. you app'sredirect_uri).
– Aaron
Dec 27 at 13:32
@Aaron TheLocationfield of the 301 response has the same uri: reddit.com/api/v1/access_token
– crm
Dec 27 at 13:59
Hmmm yeah that's definitely weird. I can't see anything wrong with your code, I guess you'll have to wait for someone familiar with reddit's OAuth
– Aaron
Dec 27 at 14:10
301 is more an information than an error, it's possible the only thing you're doing wrong is not following that redirection. You should probably check the Location field of the 301 response to see if it's expected though (e.g. you app's
redirect_uri).– Aaron
Dec 27 at 13:32
301 is more an information than an error, it's possible the only thing you're doing wrong is not following that redirection. You should probably check the Location field of the 301 response to see if it's expected though (e.g. you app's
redirect_uri).– Aaron
Dec 27 at 13:32
@Aaron The
Location field of the 301 response has the same uri: reddit.com/api/v1/access_token– crm
Dec 27 at 13:59
@Aaron The
Location field of the 301 response has the same uri: reddit.com/api/v1/access_token– crm
Dec 27 at 13:59
Hmmm yeah that's definitely weird. I can't see anything wrong with your code, I guess you'll have to wait for someone familiar with reddit's OAuth
– Aaron
Dec 27 at 14:10
Hmmm yeah that's definitely weird. I can't see anything wrong with your code, I guess you'll have to wait for someone familiar with reddit's OAuth
– Aaron
Dec 27 at 14:10
add a comment |
1 Answer
1
active
oldest
votes
Incase anyone else gets this error - the issue was fixed by removing:
post.addHeader("User-Agent", "Just testing")
post.addHeader("Host", "reddit.com")
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53945736%2freddit-oauth2-api-circular-redirect%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Incase anyone else gets this error - the issue was fixed by removing:
post.addHeader("User-Agent", "Just testing")
post.addHeader("Host", "reddit.com")
add a comment |
Incase anyone else gets this error - the issue was fixed by removing:
post.addHeader("User-Agent", "Just testing")
post.addHeader("Host", "reddit.com")
add a comment |
Incase anyone else gets this error - the issue was fixed by removing:
post.addHeader("User-Agent", "Just testing")
post.addHeader("Host", "reddit.com")
Incase anyone else gets this error - the issue was fixed by removing:
post.addHeader("User-Agent", "Just testing")
post.addHeader("Host", "reddit.com")
answered Dec 27 at 14:50
crm
1,9951349101
1,9951349101
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53945736%2freddit-oauth2-api-circular-redirect%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
301 is more an information than an error, it's possible the only thing you're doing wrong is not following that redirection. You should probably check the Location field of the 301 response to see if it's expected though (e.g. you app's
redirect_uri).– Aaron
Dec 27 at 13:32
@Aaron The
Locationfield of the 301 response has the same uri: reddit.com/api/v1/access_token– crm
Dec 27 at 13:59
Hmmm yeah that's definitely weird. I can't see anything wrong with your code, I guess you'll have to wait for someone familiar with reddit's OAuth
– Aaron
Dec 27 at 14:10