Facebook module is not displaying 'Message' text box. Can anyone guide

Message section is not available in Facebook module.

Please find the attachment. (Page has been linked. But message is not shown. Directly Post Caption is shown)

Hey Santhosh!

Use the HTTP > Make a Request module instead:

Module Setup:

URL: https://graph.facebook.com/v18.0/{PAGE_ID}/feed
Method: POST
Headers: 
  Content-Type: application/json
Query String:
  access_token: {your_page_access_token}
  message: {your_message_text}

To get your Page Access Token:

  1. Go to Facebook Graph Explorer: https://developers.facebook.com/tools/explorer/
  2. Select your app
  3. Get User Access Token with pages_manage_posts permission
  4. Exchange it for a Page Access Token

Example with actual values:

URL: https://graph.facebook.com/v18.0/123456789/feed
Method: POST
Query String:
  access_token: EAABsbCS...
  message: Hello World! This is my post.

This bypasses Make’s Facebook module entirely and posts directly to Facebook’s API - much simpler and more reliable.

Sam @ Flow Digital

Dear Sam @ Flow Digital,

Firstly, thanks a ton for taking time to respond to my query.

When I followed the exact steps, I encountered the error as below:

Error: 403 Forbidden

  • {“error”:{“message”:“(#200) If posting to a group, requires app being installed in the group, and \\\n either publish_to_groups permission with user token, or both pages_read_engagement \\\n and pages_manage_posts permission with page token; If posting to a page, \\\n requires both pages_read_engagement and pages_manage_posts as an admin with \\\n sufficient administrative permission”,“type”:“OAuthException”,“code”:200,“fbtrace_id”:“AGRStyzoWLAnv3eQ4YHJAUe”}}

Would really appreaciate your help on this.

Thanks

Santhosh