0

我在 SDK 2.0.1.GA2 和 SDK 2.1.2.GA 启动错误中成功运行上面的代码(操作无法完成。(facebookErrDomain 错误 10000。))

var data = {
        message : 'Venha você também conhecer o Spllite.', 
        link : 'http://facebook.com/spllite', 
        name : 'Spllite', 
        privacy : {
            value : 'CUSTOM', 
            friends : 'SELF'
        }
    };}

Ti.Facebook.requestWithGraphPath('me/feed', data, 'POST', function(e) {
        if (e.success) {
            alert('Post enviado com sucesso');
        } else if (e.error) { // Error HERE
            Ti.API.debug('SendAdPost: '+ e.error);
            alert('Facebook indisponível no momento. Tente mais tarde.');
        } else {
            Ti.API.debug('SendAdPost: Sem resposta');
            alert('Facebook indisponível no momento. Tente mais tarde.');
        }
    });

Ti.API.debug(e.error);

[DEBUG] The operation couldn’t be completed. (facebookErrDomain error 10000.)

对象返回

{

error = "The operation couldn\U2019t be completed. (facebookErrDomain error 10000.)";

graph = 1;

path = "me/feed";

source = "[object FacebookModule]";

success = 0;

type = result;

}

4

1 回答 1

0

查询 URI 以及查询参数都可以。导致问题的原因与link您所引用的实际情况有关。可能是因为该http://facebook.com/spllite页面未公开。

于 2012-09-02T07:58:54.853 回答