Posts under category Facebook Graph API

In my meta application with instagram api with instagram login when I define the "Data deletion request URL" the POST request send to my route with following body content

POST /api/delete HTTP/1.1 Host: 26d5-45-8-19-76.ngrok-free.app User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1) Content-Length: 166 Accept: */* Accept-Encoding: deflate, gzip Content-Type: application/x-www-form-urlencoded X-Forwarded-For: 2a03:2880:30ff:8:: X-Forwarded-Host: 26d5-45-8-19-76.ngrok-free.app X-Forwarded-Proto: https signed_request=NybldKYslIBJJfCjH9jIE6PI3ohOKimGpB293v1ojeI.eyJ1c2VyX2lk....... 

I can't verify the content using header provided based on the description that provided in following link Data Deletion Request Callback

I did following in the NestJS framwork service

import { Injectable } from '@nestjs/common'; import * as crypto from 'crypto'; @Injectable() export class SignedRequestService {   private readonly secret = 'appsecret'; // Use your app secret here   parseSignedRequest(signedRequest: string): any | null {     const [encodedSig, payload] = signedRequest.split('.', 2);     // decode the data     const sig = this.base64UrlDecode(encodedSig);     const data = JSON.parse(this.base64UrlDecode(payload));     // confirm the signature     const expectedSig = crypto       .createHmac('sha256', this.secret)       .update(payload)       .digest();     if (Buffer.compare(Buffer.from(sig), expectedSig) !== 0) {       console.error('Bad Signed JSON signature!');       return null;     }     return data;   }   private base64UrlDecode(input: string): string {     const base64 = input.replace(/-/g, '+').replace(/_/g, '/');     return Buffer.from(base64, 'base64').toString('utf-8');   } } 

Facebook phone app itself has a shop when you go to a specific business page. I am helping my company to collect the price of the products listed daily on the meta shop, and I already found the shop ID. The documentation below is the only part that shows API for shop, but do not find any information about product listing and price? Am I in the right direction for API endpoint? I used catalog ID previously and it collected the wrong pricing data.

https://developers.facebook.com/docs/commerce-platform/catalog/shop#get--read-api-

I am using instagram graph api, with these permissions(pages_show_list, instagram_basic, pages_read_engagement) and this repository https://github.com/jstolpe/instagram-graph-api-php-sdk

I am able to obtain a long-lived access token and use it to retrieve media and perform other actions, but the token expires after 60 days. I’m looking for a way to refresh it before it expires.

I found this https://developers.facebook.com/docs/instagram-platform/reference/refresh_access_token but when I try this code

GET https://graph.instagram.com/refresh_access_token   ?grant_type=ig_refresh_token   &access_token={long-lived-access-token} 

the output is: "Sorry, this content isn't available right now"

Is there a way to automatically refresh a long-lived access token, or does it need to be manually updated every 59 days?

Additionally, I can’t find any information on how to obtain or add the instagram_graph_user_profile permission.

Does anyone know how to resolve this?

{ "name": "ewf", "adset_id": "120215374042820542", "creative": { "creative_id": "1336302651052048" }, "status": "ACTIVE", "leadgen_form_id": "3944213285856717", "access_token": "EAARyZAITtz6QBO86pyaorCyAa5uij334AFiVizvoL5rnw65FBlnqWQJydGUhd1L6fgfIHmxuNyz2lba3xGj6Y8c1jZCvZBkrZA4sVvoImjNpfBdJrELvylBr8lNm5MpBKrzP7dg9FzLULbt9taTUjxge63my0RhvdKxdHS3BZAsUrbMn8AcJmeBePLZAFcZBGfGIwZDZD" }

Running into a unique issue here regarding Meta Graph API Webhooks, specifically for click-to-message ads. This is specific to click to message conversations - the app works perfectly for conversations initiated organically. The setup:

The user token used to generate the page access token has the following permissions: pages_show_list, ads_management, ads_read, business_management, pages_messaging, leads_retrieval, pages_read_engagement, pages_manage_metadata, pages_read_user_content, pages_manage_ads, pages_manage_posts, pages_manage_engagement, public_profile

The page access token generated via this user token has the following permissions: pages_show_list, ads_management, ads_read, business_management, pages_messaging, leads_retrieval, pages_read_engagement, pages_manage_metadata, pages_read_user_content, pages_manage_ads, pages_manage_posts, pages_manage_engagement, public_profile

The Meta application is subscribed to the following web hook fields feed, leaden, message_echoes, messages, messaging referrals

This setup works perfectly for messenger conversations that start organically. However, no message data is received via the web hook for those initiated via an advertisement (click to message). Only the 'referral': {'source': 'ADS', 'type': 'OPEN_THREAD'... web hook is sent, which has no details on the message itself. The same goes for outgoing messages in these threads - no web hook is sent for messaging_echoes.

The only workaround I currently have found that resolves this issue is to assign my personal Facebook account full admin (Everything) access directly at the page level or via the Business Manager that directly owns the Facebook page. Webhooks start firing for click to message ads once this is done.

However, if I am assigned full admin (Everything) access to the page through a partner Business Manager, the webhooks for click to message ads do not fire for click to message ads. They do fire for organic messenger threads.

Is anybody aware of a possible solution here?