Welcome (Welcome to the ActionScript 3 Facebook Library.) Wiki page commented on by jeanmarin
- Same here we are October there has been a 8 month gap on examples and tutorials.
If you know of any people post.
Thank you,
Same here we are October there has been a 8 month gap on examples and tutorials.
If you know of any people post.
Thank you,
Feb 07, 2009
issue 5
(How do i use the component??) reported by sid.985
- m pasting the component in my fla's library but it's giving me error
stating that some files could not be imported bcause unable to read.
m pasting the component in my fla's library but it's giving me error
stating that some files could not be imported bcause unable to read.
Oct 30, 2008
issue 3
(MethodGroupHelper ignoring empty args when sending query but...) reported by robin.southgate
- What steps will reproduce the problem?
1. Using Notifications.send make a valid call leaving the email argument blank
2. Signature is hashed including the email as an argument
3. Query string is built and continues past the email argument because it
is blank
What is the expected output? What do you see instead?
Facebook API should respond with notifications_send_response but instead
you receive an Invalid Signature error.
To correct this add the following at line 127 of
com.adobe.webapis.facebook.methodgroups.MethodGroupHelper
if (args[j].value.toString().length==0) continue;
What steps will reproduce the problem?
1. Using Notifications.send make a valid call leaving the email argument blank
2. Signature is hashed including the email as an argument
3. Query string is built and continues past the email argument because it
is blank
What is the expected output? What do you see instead?
Facebook API should respond with notifications_send_response but instead
you receive an Invalid Signature error.
To correct this add the following at line 127 of
com.adobe.webapis.facebook.methodgroups.MethodGroupHelper
if (args[j].value.toString().length==0) continue;