mirror of
https://github.com/OAuthSwift/OAuthSwift.git
synced 2026-04-26 12:45:52 +03:00
[GH-ISSUE #376] Make signed request nothing happens #241
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#241
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 @jeffreyabarrios on GitHub (May 19, 2017).
Original GitHub issue: https://github.com/OAuthSwift/OAuthSwift/issues/376
Hello! I have a custom server with oauth 1, and im trying to make the authorization with these examples from the docs:
//this variable is declared on top of the class
var oauthswift: OAuthSwift?
//then any of these example codes is what i used (with the correct parameters) on the action outlet for the login button
oauthswift.client.get("https://api.linkedin.com/v1/people/
",", .GET,success: { response in
let dataString = response.string
print(dataString)
},
failure: { error in
print(error)
}
)
// same with request method
oauthswift.client.request("https://api.linkedin.com/v1/people/
parameters: [:], headers: [:],
success: { ...
This is attached to a login button, but when I click it nothing happens, and the object oauthswift appears as nil in console, can you help me please?
@phimage commented on GitHub (May 20, 2017):
no issue template?
I will close
need help, please take your time to respond to template question
and read readme