There is no API reference for swift in Supabase for sign in a user through facebook. is there any other method for swift which i can use for facebook auth?

I have used this snippet to use google provider to authorize user in supabase...

client.auth.signInWithIdToken(credentials: OpenIDConnectCredentials(                     provider: provider,                     idToken: idToken,                     accessToken: accessToken                 )) 

Error performing query

Unable to add admin system user and generate permanent access token for whatsapp api.

Note :- Error performing query

"I'm encountering an issue while trying to add an admin system user and generate a permanent access token for the WhatsApp API. The process fails with an 'error performing query' message. Interestingly, this problem only occurs with the app I'm developing for my second business; the admin system user for my first business works fine. Could this be a problem on Facebook's end? or this is the problem my end "

I am getting this error when click on Send Message In API setup section (Sending of message failed. There was a problem with the access token or permissions you are using for the API call) [First Issue]

Its working perfect few hours ago facing problem after creating a new Facebook business profile in same Facebook profile and verified it and other thing i do is add a new number in meta business suite, and in my other business profile i unable to add phone number for onboarding.

getting this error in second profile

There was a problem registering your phone number This page is not available right now. Please try reloading in a few minutes. (Second Issue)

is there anybody who face this problem or have any solution for this.

We are currently in the process of implementing the Whatsapp Embedded Signup fucntionality that will be required by Twilio later in the year.

We've followed the documentation and we think we haven't made any mistakes.

In our front-end, everything works fine. The correct Whatsapp Business Account ID and Phone Number ID are retrieved from the Meta window.

After this we attempt to register these credentials to a new subaccount in Twilio using Twilio's Java library. We retrieve the phone number to use as the sender using Meta's API.

The step that fails is registering a Whatsapp Sender on the Twilio subaccount. This is done the following way:

private LinkedPhoneNumberResponseDto linkTwilioPhoneNumber(String countryCode, String phoneNumber, Account account, Long wabaId) {         TwilioCreateRequestDto body = TwilioCreateRequestDto.builder()                 .configuration(WhatsappTwilioConnectionConfigurationRequestDto.builder()                         .wabaId(wabaId.toString())                         .build())                 .senderId("whatsapp:" + countryCode + phoneNumber)                 .profile(WhatsappTwilioConnectionProfileRequestDto.builder()                         .name(account.getFriendlyName())                         .build())                 .build();         log.info("RequestBody is: {}", body);         log.info("ACC INFO = {}:{}:{}:{}", account.getSid(), account.getAuthToken(), account.getFriendlyName(), account.getStatus());         ResponseEntity<LinkedPhoneNumberResponseDto> res = restClient                 .post()                 .uri("https://messaging.twilio.com/v2/Channels/Senders")                 .headers(headers -> {                     headers.setContentType(MediaType.APPLICATION_JSON);                     headers.setBasicAuth(account.getSid(), account.getAuthToken());                 })                 .body(body)                 .accept(MediaType.ALL)                 .retrieve()                 .toEntity(LinkedPhoneNumberResponseDto.class);         if (res.getStatusCode().is2xxSuccessful()) {             return res.getBody();         } else {             throw new BadRequestException("Something went wrong linking the phone number to Twilio");         }     } 

For some reason, no matter what phone number we use, we always get the validation error.

We've already tried making the request thorugh Postman instead of Twilio's Java library. We've also tried three different phone numbers. Multiple Whatsapp Business Accounts have also been used.

Any help would be appreciated.

My website uses FacebookClient to get the company's Facebook feed and display the latest posts on the site. It's no longer working (not sure how long ago it stopped). The access token expired a while ago, so I updated the access token, and the access token now works (I don't get an exception now on dynamic feedData = (IDictionary<string, object>)client.Get($"{pageId}/feed", new Dictionary<string, object> { { "limit", numResults } }); but it just returns an empty array.

I know that the pageId and accessToken are valid, because this code works:

dynamic coverImage = client.Get(pageId, new Dictionary<string, object> {     { "fields","picture" } }); 

but the call to get the feed returns no posts.

To make testing easier, I'm testing in https://developers.facebook.com/tools/explorer?method=GET&path={pageId}%2Ffeed&version=v20.0. I get the same results in the explorer. No error, just an empty data array:

{   "data": [   ] } 

I verified there are posts on the Facebook page as recent as 4 hours ago. If the access token and pageId are valid, why is {pageId}/feed returing no data?