Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Shop section of facebook pages through api/javascript sdk

Facebook introduced a shop section for facebook pages. I need to manage my page's shop section through javascript sdk but I am unable to find the propoer docs or reference to do that. I know how to manage or update simple fields of your pages through sdk with post method using FB.api:

FB.api(/page_id_and_post_method, function(response) {
    console.log("PAGEEEEEE DETAILS", response);
});

So, the problem is that I just could not find the proper field name for that 'shop' section so as to update it.

So how can I read/update the 'shop' section of my page through sdk/api just as the shopify do as we can see below:

https://www.facebook.com/Womansera/shop?ref=page_internal&rid=221671794535129&rt=9

like image 462
Abhinav Saini Avatar asked Jun 02 '16 08:06

Abhinav Saini


1 Answers

This is a feature that Facebook is testing right now, with Shopify as a partner (and maybe a few others.)

It is not available for other 3rd-party apps yet.

like image 172
CBroe Avatar answered Oct 11 '22 01:10

CBroe