Steve Podell
Steve Podell
More specifically, I get "POST https://api.twitter.com/oauth/request_token 401 (Authorization Required)" which makes me think that either Chrome has locked down what can be done in an extension, or Twitter is looking...
@richardartoul Ok, your point makes sense, but what are you suggesting as an alternative?
Gilnave's changes worked for me with one additional fix https://github.com/fullstackreact/react-native-oauth/pull/121/files In OAuthManagerModule.java at line 410, I replaced `String oauthTokenSecret = (String) accessTokenMap.get("oauth_token_secret");` with `String oauthTokenSecret = (String) accessToken.getParameter("token_secret");` then it...
After many other changes, I ran into another issue with version 2.2.2 , like in [issue 165](https://github.com/fullstackreact/react-native-oauth/issues/165) where the Gson parsing throws unhandled exceptions. (My personal feeling is that the...
I got it working. For iOS don't bother trying to add a URL at all on Facebook Login/Settings/"Valid OAuth redirect URIs" field. That field will not accept a iOS scheme,...
@BrendanBerkley This is probably months too late, but by debugging into objectiveC I found that the scheme has to be all lowercase. So in your ``` TestAppMobile[8364] : Calling authorizeWithUrl:...
With 8.0, for me in OAuthManagerModule.java `private WritableMap accessTokenResponse()` receives a OAuth2AccessToken that looks more like a payload from a URL separated by ampersands (not Json) and the GSON parser...
Same issue
I had this working last week, and now I am getting error 1000 again. How dumb (on Apples part) to even have an error 1000 with no explanation that lots...
I test using an ngrok tunnel to the backend (in our case Django Python) running on my Mac. And in this case last week I started getting error 1000. Today,...