I am trying to post something onto the user's wall. However I keep getting this error.
TypeError: Error #1006: value is not a function.
at com.facebook.graph.core::AbstractFacebook/handleRequestLoad()
at com.facebook.graph.net::AbstractFacebookRequest/dispatchComplete()
at com.facebook.graph.net::AbstractFacebookRequest/handleDataLoad()
at com.facebook.graph.net::AbstractFacebookRequest/handleURLLoaderComplete()
at flash.events::EventDispatcher/dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at flash.net::URLLoader/onComplete()
Here is the code:
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;
params.picture = "www.something.com/something.png";
Facebook.api("/"+userId+"/feed", null, params, "POST");
}
I am trying to understand what this problem is. But somehow cant figure it out. Any help here?