/ Published in: ActionScript 3
i assume that the Facebook api has been initialized and i have the "publish_stream permission" the picture can be taken of a particular area of the displayObject
Expand |
Embed | Plain Text
public function PostToUserWall(userId : String,message : String, name :String,caption : String, description : String, link : String) : void { var params: Object = new Object; params.message = message; params.name = name; params.caption = caption; params.description = description; params.link = link; Facebook.api("/"+userId+"/feed",null,params,"POST"); }
You need to login to post a comment.
