Beniamin Rychter
Beniamin Rychter
@blablacio What do you mean "native all of them are checked against the aud field in the id_token"? We have that issue in our project but the endpoint for web...
Hmm that's very interesting. But you have created only one endpoint for both platforms, right? Because I've got same configuration basically, and this is my endpoint view for apple login,...
Ok, so maybe the case is your custom `BaseLoginView` or Serialiser. Because on that point, all is the same, and for me, it's not working.
Yeah, I've got `dj-rest-auth` as well. I don't know what's going on here 😄 I'm definitely missing something.
``` [OAuth2Error] Error retrieving access token: b'{"error":"invalid_grant","error_description":"client_id mismatch. The code was not issued to com.app.test.login."}' ``` That is the situation where `com.app.test.login` is `SERVICE_ID` and I want to login via...
@yandiro That's very weird behavior. I have a very similar solution to yours - custom `AppleOAuth2Client` and `AppleOAuth2Adapter`. Everything is working great now. ```py class WebAppleOAuth2Client(AppleOAuth2Client): def get_client_id(self): return settings.APPLE_CLIENT_ID...
On the mobile app, on the request, we are including beside `code` - `idToken` which is `nonce` variable coming from Apple Native response object. But we are using React Native...