Tried using user.publish_story and was always getting false as result, even though the stories were showing up in my
news feed. Took a look at the xml coming back from facebook and discovered that it now has a child element with the
1 or 0:
<pre>
<?xml version="1.0" encoding="UTF-8"?>
<feed_publishStoryToUser_response
xmlns="http://api.facebook.com/1.0/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://api.facebook.com/1.0/ http://api.facebook.com/1.0/facebook.xsd"
list="true">
<feed_publishStoryToUser_response_elt>1</feed_publishStoryToUser_response_elt>
</feed_publishStoryToUser_response>
</pre>
I'm attaching a patch for making this response parsing work. However, someone may want to go through and check the other
calls to see if any others have changed.
|