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'm trying to publish stuff to someone's wall.

It works, but I'm also trying to use the auto_publish feature so the user will only get one popup granting the publish_stream extended permission.

So I set streamPublish's auto_publish to true, but I still get the popup asking me if I want to publish and/or edit the message.

What am I doing wrong?

Here's what I'm running:

FB.ensureInit(function () {
    FB.Facebook.get_sessionState().waitUntilReady(function() {
        FB.Connect.showPermissionDialog("publish_stream", function(perms) {
            if (perms == "publish_stream") {
                FB.Facebook.apiClient.friends_get(null, function(result) {
                    var markup = "";

                    var targets = result;
                    targets = [testFriendsIDForTesting];

                    var attachment = {
                        name: "Blablabla",
                        href: window.location.href,
                        description: "description",
                        caption: "caption"
                    };

                    var actionLinks = [{
                        text: "View",
                        href: window.location.href
                    }];

                    var num_targets = targets.length;
                    for (var i=0; i<num_targets; i++) {
                        var fId = targets[i];
                        FB.Connect.streamPublish("none", attachment, actionLinks, fId, "none", null, true);
                    }

                });
            }
        });

    });
});
share|improve this question

3 Answers

up vote 1 down vote accepted

Came across this thread as im having the same issue, which i solved (without having to use the other apiClient call).

You are right in your answer above, in that FB are not setting the autoPublish settings properly.

The workaround is to make a call to FB.Connect.forceSessionRefresh before attempting to publish.

My code before:

function fbPublish() {{
                FB.ensureInit(function() {{
                        FB.Connect.streamPublish('{0}', {1}, {2}, null, 'Anything else you would like to add?', fbPublishCallback, true, null);
                    }});
            }}

Code now:

function fbPublish() {{
                FB.ensureInit(function() {{
                    FB.Connect.forceSessionRefresh(function() {{
                        FB.Connect.streamPublish('{0}', {1}, {2}, null, 'Anything else you would like to add?', fbPublishCallback, true, null);
                    }});
                }});
            }}

The only reason im using this "old" JavaScript method is because there is a current bug with the Graph API where you cannot post action links.

I have no idea what kind of developers they have over at Facebook, because the issues i have run into have been disgraceful (this, Graph API not allowing action links, '' instead of null causing "Application Server Error", etc).

Hope this helps someone else out.

share|improve this answer

The problem stems from the last parameter your passing as false. This is the auto_publish bool, so even with the permissions granted with this set to false it will prompt the user if they want to publish it or not.

// Set auto publish to true
FB.Connect.streamPublish("none", attachment, actionLinks, fId, "none", null, true);
share|improve this answer
Sorry but that paste was made after I mangled the code heavily and forgot the bool at the wrong value when I pasted. Have an upvote tho. – Prody Apr 2 '10 at 14:06

I'm still unsure why this doesn't work as expected, but I've checked the FB JS code and it's failing to set my user autoPublish settings properly in it's userInfo object.

So I've worked around this by calling stream.publish via:

FB.Facebook.apiClient.callMethod("stream.publish", c, new FB.ImmediateSequencer(function(n,m){
share|improve this answer

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.