mirror of
https://github.com/OAuthSwift/OAuthSwift.git
synced 2026-04-26 20:55:57 +03:00
[GH-ISSUE #65] Problem with authenticating via Tumblr #40
Labels
No labels
bug
cocoapod
duplicate
enhancement
feature-request
help wanted
help wanted
invalid
pull-request
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/OAuthSwift#40
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @pschneider on GitHub (May 14, 2015).
Original GitHub issue: https://github.com/OAuthSwift/OAuthSwift/issues/65
Hi,
I'm currently trying to authenticate via Tumblr OAuth1. Unfortunately I'm always getting the following error when coming back from Mobile Safari:
I'm using the following URLs as mentioned on Tumblr docs
Tumblr's documentation stated that their implementation is very similar with Twitter, but if I change the key/secret and the URLs to Twitter's API everything works fine.
Does anyone know what kind of problem I'm facing here? Could this be an Issue with the OAuth Library itself?
Thanks!
Edit: Tumblr Sends valid oauth_token and oauth_verifier Parameters back. The url looks just like when authenticating against twitter.
@pschneider commented on GitHub (May 14, 2015):
The problem seems to be that Tumblr adds the following URL fragment at the end of the callback:
So the parameters are overwritten in authorizeWithCallbackURL.
@dongri commented on GitHub (Jun 1, 2015):
Fix:
github.com/dongri/OAuthSwift@1babc0f465@pschneider commented on GitHub (Jun 9, 2015):
Thank you @dongri !