我对编程完全陌生,只是设法学习了 ActionScript 3 的基础知识。现在,我想学习如何使用 UI 类(取自一个不错的教程)通过 as3 SDK 在我的朋友的墙上发帖:
这就是我在自己的墙上发帖的方式:
protected function newsFeed ():void
{
// define your caption text
var theCaption:String = "CaptionText";
// define the descrition text
var theDescription:String = "Text for game Achievement";
// We need to follow the FB docs to tell it what sort of input we are sending to FB
// We are trying to set the 'feed'
var methodInput:String = 'feed';
var thePicture:String = "mylink/picture.png";
var theLink:String = "mylink";
var theName:String = "Name of FB Status Setter";
// Create an object that we'll call 'data' and fill it with the actual data we're sending to Facebook
var data:Object = {
caption:theCaption,
description:theDescription,
picture:thePicture,
name:theName,
link:theLink
};
Facebook.ui(methodInput, data, onUICallback);
}
protected function onUICallback(result:Object):void
{
// do something
}
这工作得很好。我知道我必须将参数“到”集成到某个地方。但我不知道在哪里以及如何。抱歉,我对此非常陌生。这是来自 Facebook 文档
特性
from:发布消息的用户的 ID 或用户名。如果未指定,则默认为当前用户。如果指定,它必须是用户的 ID 或用户管理的页面的 ID。
to:此故事将发布到的个人资料的 ID 或用户名。如果此 > 未指定,则默认为 from 的值。
希望有人可以帮助我。
最好的问候, Amir PS:有没有一种方法可以只发布一个朋友的墙,而另一种方法可以发布在几个朋友的墙上?