Pascal Pfiffner

Results 97 comments of Pascal Pfiffner
trafficstars

Are you on latest `master` or using CocoaPods? Try latest master as it contains a change to this, which is not yet podded.

Have you tried setting a different encoding, as discussed in #165 ? Here's the setting: https://github.com/p2/OAuth2/blob/master/Sources/Base/OAuth2ClientConfig.swift#L76

Yes, these parameters are added to the token request, not to the authorize URL. If you want to add custom parameters to authorize URI, you can add them when you...

You're calling `signInEmbedded()` too early, `viewDidLoad()` is not a good place for that, use `viewDidAppear()`.

Yes, that won't work as the App never gets called with this redirect URL. You'll need to use the custom, embedded web view (set embedded to true and safari to...

Alright great! I'll keep this issue open as the parameter issue when using `DataLoader` is not resolved yet.

Yeah I've seen this too, but this must be fixed on the HTML side by the server.

Yes, should detect `invalid_grant` in `error` and raise the same error!