Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've spent an entire day trying to figure out how to make this error go away: Incorrect signature

I'm using as3 for my a flash file, which is embeded in iframe canva. I can connect properly:

this.fbook= new Facebook();
var webSession:WebSession = new WebSession(api_key,secret_key, session_key);
fbook.startSession(webSession);
webSession.addEventListener(FacebookEvent.CONNECT, handle1); webSession.verifySession();

but after connecting I call the getLoggedInUser method to get the uid by doing this:

var call1:FacebookCall = new GetLoggedInUser(); fbook.post(call1); call1.addEventListener(FacebookEvent.COMPLETE,handle2);

but this is giving me the incorrect signature error, I don't know how to fix it, any help?

share|improve this question
Have any of the API changed recently? Maybe adding tags for ActionScript and facebook may help you get more hits. – Thomas May 28 '10 at 20:13
no don't think so, I added the tags, hopefully it gets a response – Saad May 28 '10 at 20:53

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.