Hey Guys,
I have integrated AmityUiKitSocial to a react app. Everything was working correctly, the communities were showing inside the UiKit component.
I enabled Secure Mode. Implemented Authentification in backend (as per documentation) to return authKey and changed the implementation to:
<AmityUiKitProvider
apiKey={apiKey}
apiRegion={apiRegion}
userId={userId}
displayName={displayName}
locale={selectedLangauge || "es"}
**authToken={authToken}**
>
<AmityUiKitSocial />
</AmityUiKitProvider>
added the authToken props but the the UI looks like this:
nothing is loading.
I don’t see any errors in the console regarding this.
If I inspect the network request I see that there is call to https://api.us.amity.co/api/v4/sessions that returns an access token:
If I take that accessToken and do an API call to get the communities:
GET {{ url }}/api/v3/communities
Authorization: Bearer {{ accessToken }}
the API returns the data. So the access token and authToken seems to be correctly validated as I see correct responses from the API, but the doesn’t load anything?
Can someone advise on this?
Thank you.