i use the wordpress social login plugin to log in on my page. it works also to log in with a fb-page but if i want to share (as user it works fine) it does not work i load the SDK Asynchronously and use JS SDK to post like:
FB.getLoginStatus(function(response) {
if (response.status === 'connected') {
FB.api('/me/feed', 'post', {
link: MYLINK
}, function(response) {
if (!response || response.error) {
jQuery('#warning').html(errorwarning);
}
else {
alert('response.id')
}
else
...
...
...
I get the id of the post as respone, but there is no post on the FB-pages wall Loged in as user it works. I added these permissions: publish_stream, manage_pages and offline_access.