After successfully implementing the latest Facebook SDK react-native-fbsdk-next for Android, I am facing issues with its functionality on IOS. I have managed to obtain a token, but when attempting to use it to fetch pages, I keep getting a "wrong signature" error message.
const manager = new GraphRequestManager();
const igAccountFields =
'instagram_business_account{id,name,username,profile_picture_url},id,username,name,tasks,category,access_token';
const req = new GraphRequest(
'/me/accounts',
{
httpMethod: 'GET',
accessToken: accessToken,
parameters: {
fields: {
string: igAccountFields,
},
},
},
_responseInfoCallback,
);
manager.addRequest(req);
manager.start();
I require assistance in identifying the potential error causing this issue. Any insights or suggestions would be greatly appreciated.