even after you have it setup you have to submit the app to Facebook for the permissions of posting to a Facebook page. I have submitted mine 3 times and all 3 times they have denied the permissions.
Printable View
yeh cool, I've done everything fb has asked but maybe it takes some time! I really wanted this up….
help please, i am a newbie
i cant get autofacebook to work ihave check and double checked ids and token access codes
i keep getting this error
Error Facebook Error: (#200) The user hasn't authorized the application to perform this action
can some one tell me what i am doing wrong, facebook setup is so confusing
thanks
The reason is that publish_stream is now deprecated; use publish_actions instead.
facebook_authorization.php
943: $perms = "publish_actions,manage_pages,offline_access";
This is the error that i now receive:
Facebook Error: Invalid parameter
any help appreciated thanks
Folks. the latest version of this mod does not work with 1.54 or facebook developers. It needs to be updated.
I have been using this mod for couple of years... Recently I noticed facebook requires atleast 200 x 200 pixels of image. But, only small image of 100X80 is produced for "og:image". Therefore, Facebook replaces the product image with Facebook logo. Any help to replace small image with medium image? I am using Image Handler and I have configured Medium images to display 250X200 pixels.
As there was no help coming from this Forum, I embarked upon fixing myself and I did successfully. This is what I did.
/includes/functions/functions_lookups.php
I added following codes in the above file:
Then, I edited the code in /includes/templates/YOUR-TEMPLATE/common/html_header.php as follows:PHP Code:
/*
* look up a products MEDIUM image and send back the image's HTML \<IMG...\> tag - ADDED BY GOPINATH GOSWAMI on June 25, 2015
*/
function zen_get_products_medium_image($product_id, $width = MEDIUM_IMAGE_WIDTH, $height = MEDIUM_IMAGE_HEIGHT) {
global $db;
$sql = "select p.products_image from " . TABLE_PRODUCTS . " p where products_id='" . (int)$product_id . "'";
$look_up = $db->Execute($sql);
return zen_image(DIR_WS_IMAGES . $look_up->fields['products_image'], zen_get_products_name($product_id), $width, $height);
}
//get defined image or default
$myImage= zen_get_products_image((int)$_GET['products_id']);
was changed to
//get defined image or default
$myImage= zen_get_products_medium_image((int)$_GET['products_id']);
That's it... It worked like charm...!
I used facebook debug tool at https://developers.facebook.com/tools/debug/ and works perfectly.
Edited !