Post to a friends wall

220 views
Skip to first unread message

Ryan Michael

unread,
Jul 9, 2013, 5:35:21 AM7/9/13
to facebook-act...@googlegroups.com
I've receiving an error when attempting to post to a friends wall, I believe this is down to changes Facebook made that removed the ability to post to a friends wall via Graph API in February (https://developers.facebook.com/roadmap/completed-changes/)

It suggests I invoke the feed dialogue, does anybody have a basic example for facebookMobile I can take a look at?

Cheers

Khaled Garbaya

unread,
Jul 9, 2013, 10:41:04 AM7/9/13
to facebook-act...@googlegroups.com
post to friend's wall is no longer supported , you should use the tag functionnality instead.

facebook.ui("feed",{name:"app name", link:"http://example.com",picture:"picURL",description:"lorem ipsum...", caption:"caption goes here ...."})


2013/7/9 Ryan Michael <xryan.m...@gmail.com>
I've receiving an error when attempting to post to a friends wall, I believe this is down to changes Facebook made that removed the ability to post to a friends wall via Graph API in February (https://developers.facebook.com/roadmap/completed-changes/)

It suggests I invoke the feed dialogue, does anybody have a basic example for facebookMobile I can take a look at?

Cheers

--
You received this message because you are subscribed to the Google Groups "facebook-actionscript-api" group.
To unsubscribe from this group and stop receiving emails from it, send an email to facebook-actionscr...@googlegroups.com.
To post to this group, send email to facebook-act...@googlegroups.com.
Visit this group at http://groups.google.com/group/facebook-actionscript-api.
For more options, visit https://groups.google.com/groups/opt_out.
 
 



--
Cordialement,
Khaled Garbaya
Senior Flash Developer & chef d'equipe flasheurs
StreamerZ
----------------------------------------------
17, rue du Liberia
Tunis – Tunisie
Tel : (+216) 71 28 00 19 
Fax : (+216) 71 28 00 33 
www.streamerz.net

Ryan Michael

unread,
Jul 10, 2013, 5:13:16 AM7/10/13
to facebook-act...@googlegroups.com
Thanks Khaled, but as far as I'm aware facebookMobile.ui doesn't exist - any idea what the process would be using facebookMobile?



On Tuesday, July 9, 2013 3:41:04 PM UTC+1, KhaledG wrote:
post to friend's wall is no longer supported , you should use the tag functionnality instead.

facebook.ui("feed",{name:"app name", link:"http://example.com",picture:"picURL",description:"lorem ipsum...", caption:"caption goes here ...."})


2013/7/9 Ryan Michael <xryan.m...@gmail.com>
I've receiving an error when attempting to post to a friends wall, I believe this is down to changes Facebook made that removed the ability to post to a friends wall via Graph API in February (https://developers.facebook.com/roadmap/completed-changes/)

It suggests I invoke the feed dialogue, does anybody have a basic example for facebookMobile I can take a look at?

Cheers

--
You received this message because you are subscribed to the Google Groups "facebook-actionscript-api" group.
To unsubscribe from this group and stop receiving emails from it, send an email to facebook-actionscript-api+unsub...@googlegroups.com.

To post to this group, send email to facebook-act...@googlegroups.com.
Visit this group at http://groups.google.com/group/facebook-actionscript-api.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Khaled Garbaya

unread,
Jul 10, 2013, 5:15:55 AM7/10/13
to facebook-act...@googlegroups.com
try this one
facebook.api("/me/feed",{name:"app name", link:"http://example.com",
picture:"picURL",description:"lorem ipsum...", caption:"caption goes here ...."})


2013/7/10 Ryan Michael <xryan.m...@gmail.com>
To unsubscribe from this group and stop receiving emails from it, send an email to facebook-actionscr...@googlegroups.com.

To post to this group, send email to facebook-act...@googlegroups.com.
Visit this group at http://groups.google.com/group/facebook-actionscript-api.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Ryan Michael

unread,
Jul 10, 2013, 6:01:00 AM7/10/13
to facebook-act...@googlegroups.com
Thanks Khaled, as far as I'm aware though we can't do the same thing for facebookMobile (facebookMobile.ui doesnt seem to work) - is this the case, any other workaround?



On Tuesday, July 9, 2013 3:41:04 PM UTC+1, KhaledG wrote:
post to friend's wall is no longer supported , you should use the tag functionnality instead.

facebook.ui("feed",{name:"app name", link:"http://example.com",picture:"picURL",description:"lorem ipsum...", caption:"caption goes here ...."})


2013/7/9 Ryan Michael <xryan.m...@gmail.com>
I've receiving an error when attempting to post to a friends wall, I believe this is down to changes Facebook made that removed the ability to post to a friends wall via Graph API in February (https://developers.facebook.com/roadmap/completed-changes/)

It suggests I invoke the feed dialogue, does anybody have a basic example for facebookMobile I can take a look at?

Cheers

--
You received this message because you are subscribed to the Google Groups "facebook-actionscript-api" group.
To unsubscribe from this group and stop receiving emails from it, send an email to facebook-actionscript-api+unsub...@googlegroups.com.

To post to this group, send email to facebook-act...@googlegroups.com.
Visit this group at http://groups.google.com/group/facebook-actionscript-api.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Khaled Garbaya

unread,
Jul 10, 2013, 6:02:53 AM7/10/13
to facebook-act...@googlegroups.com
It is a little bit delicate for mobile I think the best solution is to use NativeExtension : https://github.com/freshplanet/ANE-Facebook


To unsubscribe from this group and stop receiving emails from it, send an email to facebook-actionscr...@googlegroups.com.

To post to this group, send email to facebook-act...@googlegroups.com.
Visit this group at http://groups.google.com/group/facebook-actionscript-api.
For more options, visit https://groups.google.com/groups/opt_out.
 
 



--
--------------------
Best Regards,
Khaled Garbaya
Senior Interactive Developer

Ryan Michael

unread,
Jul 10, 2013, 7:15:11 AM7/10/13
to facebook-act...@googlegroups.com
Perfect, thanks a lot - I'll take a look


On Wednesday, July 10, 2013 11:02:53 AM UTC+1, Khaled Garbaya wrote:
It is a little bit delicate for mobile I think the best solution is to use NativeExtension : https://github.com/freshplanet/ANE-Facebook
On Wed, Jul 10, 2013 at 11:01 AM, Ryan Michael <xryan.m...@gmail.com> wrote:
Thanks Khaled, as far as I'm aware though we can't do the same thing for facebookMobile (facebookMobile.ui doesnt seem to work) - is this the case, any other workaround?



On Tuesday, July 9, 2013 3:41:04 PM UTC+1, KhaledG wrote:
post to friend's wall is no longer supported , you should use the tag functionnality instead.

facebook.ui("feed",{name:"app name", link:"http://example.com",picture:"picURL",description:"lorem ipsum...", caption:"caption goes here ...."})


2013/7/9 Ryan Michael <xryan.m...@gmail.com>
I've receiving an error when attempting to post to a friends wall, I believe this is down to changes Facebook made that removed the ability to post to a friends wall via Graph API in February (https://developers.facebook.com/roadmap/completed-changes/)

It suggests I invoke the feed dialogue, does anybody have a basic example for facebookMobile I can take a look at?

Cheers

--
You received this message because you are subscribed to the Google Groups "facebook-actionscript-api" group.
To unsubscribe from this group and stop receiving emails from it, send an email to facebook-actionscript-api+unsubsc...@googlegroups.com.
To post to this group, send email to facebook-act...@googlegroups.com.



--
Cordialement,
Khaled Garbaya
Senior Flash Developer & chef d'equipe flasheurs
StreamerZ
----------------------------------------------
17, rue du Liberia
Tunis – Tunisie
Tel : (+216) 71 28 00 19 
Fax : (+216) 71 28 00 33 
www.streamerz.net

--
You received this message because you are subscribed to the Google Groups "facebook-actionscript-api" group.
To unsubscribe from this group and stop receiving emails from it, send an email to facebook-actionscript-api+unsub...@googlegroups.com.
To post to this group, send email to facebook-act...@googlegroups.com.
Visit this group at http://groups.google.com/group/facebook-actionscript-api.
For more options, visit https://groups.google.com/groups/opt_out.
 
 



--
Reply all
Reply to author
Forward
0 new messages