OAuthSwiftAlamofire
OAuthSwiftAlamofire copied to clipboard
Utility method to sign Alamofire request
I am using Apple Silicon. The Carthage website suggests the use of flag `--use-xcframeworks`. ``` carthage update --use-xcframeworks *** Cloning OAuthSwiftAlamofire *** Cloning OAuthSwift *** Cloning Alamofire *** Checking out...
Added license section in readme file
Multiple compiler errors occur when using with OAuthSwift 2.1.0, Alamofire 5.2.1, in both `HTTPMethod.swift` and `OAuthSwiftRequestAdapter.swift`.
I get this response from the server when using OAuth with .post request { code = "woocommerce_rest_authentication_error"; data = { status = 401; }; message = "Invalid signature - provided...
I am trying to use OAuthSwiftAlamofire using cocoapod. However, after pod install, the following error occurs in the HTTPMethod.swift file of the OAuthSwiftAlamofire framework. ``` HTTPMethod.swift (Line10) import Alamofire ->...
Today, I am using SessionManager to make my OAuth1 URL requests via Alamofire. ``` sessionManager = SessionManager( configuration: .default ) sessionManager?.adapter = oauth!.requestAdapter sessionManager?.request( ... ) ... ``` This works...
How do you pass a callback to the renew token process in the event that it fails?
If a request comes in with a `401` while token refresh is in progress, the completion handler of `retry` is never called and I believe the request just "disappears." In...