Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

1 Answer

you must use your page ID instead of me

FB.getLoginStatus(function(response) {
    if (response.status === 'connected') {
        FB.api('/'+page_id+'/feed', 'post', {
            link: MYLINK
        }, function(response) {
            if (!response || response.error) {
               jQuery('#warning').html(errorwarning);
            }
        else {
           alert('response.id')
        }
    else
    ...
    ...
    ...
share|improve this answer
thx for the question, but it should work with "/me" anywhay. i tried also with the page-id, its the same thing. – pickerle Nov 15 '12 at 13:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.