Reputation: 1
I need to post to my client's facebook wall from their C# application, they do not have a facebook application.
To do this I need to get an Access Token, and to do that I need an App ID. How can I get an Access Token without and App ID, or will I need to create a "dummy" facebook app to get an appid?
Thanks, Kerry
Upvotes: 0
Views: 294
Reputation: 1112
Creating a Facebook application and Page Management access token is super quick and easy. All you need to do is the following:
If you need an access token which lasts more than 60 days you need to review the docs here https://developers.facebook.com/roadmap/offline-access-removal/ to get a long lived access token at step 2 above.
I hope that helps!
Upvotes: 1
Reputation: 11104
you can send using facebook social plugin
sample code
<div id="fb-root"></div>
<script>
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_GB/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<div class="fb-send" data-href="http://example.com"></div>
Upvotes: 0