Share to Facebook via ASP.NET

I saw this and this , but before I plunge a ton of time into it, I want to know if what I am trying to do is possible. I have a page on FB (not a profile, but a page for business, websites, etc.), and I want to publish the story using my site automatically. I do not want to do anything but this. I do not want to create an application (if I do not need it), just submit to the page. Is there an easy way to do this, or is it super complicated?

Also, if I need to create an application, what is the easiest way to do this (they never answered the question of another guy)?

Thanks!

+4
source share
3 answers

Yes, you will need to get a page access token. Just use the user access token for the page administrator and call me/accounts There you will find a list of all pages and applications approved by this user. Locate the page and there will be a page access token in this object. Use the page access token and HTTP POST to me/feed with the message parameters set.

See also:

http://developers.facebook.com/docs/reference/api/page/

https://developers.facebook.com/docs/reference/api/permissions

http://developers.facebook.com/docs/authentication/

0
source

You can write a script to control your web browser. a script can log in and then post a message ... Use a library, such as WatiN, in a script browser.

0
source

You will need to make a Facebook application, use the franks method, or sniff a bit and figure out how the publisher works, and log in / send messages using cURL and cookies.

There is also an app called "Blog Reader RSS Feed" if you want to go the RSS route.

0
source

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


All Articles