mirror of
https://github.com/OAuthSwift/OAuthSwift.git
synced 2026-04-27 13:15:55 +03:00
[GH-ISSUE #91] user defined params in authorize phrase not supported #55
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#55
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 @sunweik on GitHub (Aug 12, 2015).
Original GitHub issue: https://github.com/OAuthSwift/OAuthSwift/issues/91
certain service, such as flickr, needs to use 'perms=read' in authorize url to specify permission requested. I don't see this is supported in latest version yet.
supporting user defined parameter for authorize url can fix this problem and more
@phimage commented on GitHub (Aug 12, 2015):
With oauth2 the equivalent parameter will be scope and there is also a dictionary parameters
But Flickr use oauth1 and there is no parameters
So the current workaround is to specify the url with the query parameter ie. ....authorize?perm=read
@sunweik commented on GitHub (Aug 13, 2015):
this is a good workaround, I will check it out
@sunweik commented on GitHub (Sep 15, 2015):
this workaround works