Share HTML content on facebook

How can I share html content on facebook? I want to share text in tabular format on facebook. I tried to share it as text on the wall, it did not work. In addition, I tried to save it as .html and send to facebook how we share images. This did not work.

+4
source share
3 answers

from what i see on google, publishing raw HTML on a Facebook wall is not possible, what you can do is upload a page and link to it on the wall with a link.

+1
source

Posting to the user's wall is done with sending POST to

https://graph.facebook.com/USER_ID/feed 

with an object like Facebook Post . The Facebook Post type includes these String content fields that are visible after posting:

 description caption message 

None of these fields support HTML.

+2
source

use facebook post API for this purpose ...
https://developers.facebook.com/docs/reference/api/post/
this may help u for different options for posting to facebook.

+1
source

Source: https://habr.com/ru/post/1413666/


All Articles