문제

After i invite friend via app (JS api) they don't have any way to accept invitation (they don't have notifications, or notification disappear directly on hover). So they are being invited, but don't even know about that.

Here is how i invite friend to event:

FB.api('/EVENT_ID/invited?users=USER_ID', 'POST', function(response){console.log(response);});
도움이 되었습니까?

해결책

Request should look like that:

FB.api(
    '/707089732635823/invited',
    'POST',
    {
        access_token: FB.getAccessToken(),
        users: '100007028615075'
    },
    function(response) {
        console.log(response);
    }
)
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top