OAuthSwiftAlamofire icon indicating copy to clipboard operation
OAuthSwiftAlamofire copied to clipboard

Utility method to sign Alamofire request

Results 8 OAuthSwiftAlamofire issues
Sort by recently updated
recently updated
newest added

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...

question

How do you pass a callback to the renew token process in the event that it fails?

question

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...