0
我正在使用facebook圖形API在使用AS3的Flash中使用facebook應用程序。有時,我向用戶發送apprequests,並且我需要在請求中包含一些數據,以便在用戶點擊它並運行應用程序時使用。使用AS3和Facebook apprequests發送和接收數據
我的請求代碼到目前爲止是這樣的:
var fbReq:Object = new Object();
fbReq.message='Play with me!';
fbReq.title='You were invited to play a game!';
fbReq.to=sendTo;
fbReq.data = {test: "testingData"};
Facebook.ui('apprequests',fbReq,inviteResult,'iframe');
據我可以在網上找到,數據對象應該作爲網址參數時,我的應用程序加載,但我不能看到這些的任何地方。