mirror of
https://github.com/OAuthSwift/OAuthSwift.git
synced 2026-04-26 20:55:57 +03:00
[GH-ISSUE #720] authorize with a request body #466
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#466
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 @hrsma2i on GitHub (Jun 11, 2024).
Original GitHub issue: https://github.com/OAuthSwift/OAuthSwift/issues/720
Description:
I have to add a parameter
scope(particular to the OAuth1 API, not common one in the OAuth2 context) to the request body when getting a request token like:OAuthSwiftClient.post has the
bodyargument, but I don't know how to pass the body fromauthorizeorpostOAuthRequestToken. Is it not possible?OAuth Provider? (Twitter, Github, ..):
https://developer.hatena.ne.jp/ja/documents/auth/apis/oauth/consumer/#21-request-token-%E3%82%92%E5%8F%96%E5%BE%97%E3%81%99%E3%82%8B
OAuth Version:
OS (Please fill the version) :
Installation method:
Library version:
Xcode version:
11.4 (Swift 5.2)
11.x (Swift 5.1)
10.x (Swift 5.0)
other: 15.3 (Swift 5.10)
objective c
@phimage commented on GitHub (Jun 11, 2024):
maybe add it to one of your api url
../initiate?scope="xxx"
(by chance it will not be removed)
Le mar. 11 juin 2024 à 16:24, hiroshi.matsui @.***> a
écrit :
@hrsma2i commented on GitHub (Jun 11, 2024):
Thanks! I can do that.