Empty payload in accessToken with iOS SDK

Hi
I am getting access token with iOS SDK, but it has empty payload. From other threads I find out, that I need to set Audience parameter to fix that.

But I can’t found how to make it with iOS SDK.
In Auth0.plist there is only Domain and ClientId params:

I found how to make it :slight_smile: Here is example:

Auth0
    .webAuth()
    .audience("YOUR_AUTH0_API_IDENTIFIER")

Thanks for sharing it with the rest of community!