Topic-icon Jomsocial and JFBConnect Facebook application issue

Active Subscriptions:

None
Ive noticed from the JFBconnect documentaiton that you advise removing the application secret id etc from the Jomsocial application.

However this is a problem as it stops jomsocial from updating peoples facebook status when they post to the jomsocial wall.

Any ideas?
The topic has been locked.
Active Subscriptions:

None
14 years 1 month ago #21510 by mtk

phiree2 wrote: Ive noticed from the JFBconnect documentaiton that you advise removing the application secret id etc from the Jomsocial application.

However this is a problem as it stops jomsocial from updating peoples facebook status when they post to the jomsocial wall.

Any ideas?

Hello,
this is way we've included with JFBC a plugin to replace that functionality and Post JomSocial Activity to User's Facebook Wall .

if you have any further questions, please post from the user you've purchased the subscription with.

Thank you,
Mati
The topic has been locked.
Active Subscriptions:

None
14 years 1 month ago #21517 by phiree
Your documentation is out of date - frontpage.guests.php no longer exists

This is what i have
/public_html/components/com_community/templates/bubble
params.ini
profile.about.php
profile.header.php
profile.index.php
templatesDetails.xml
The topic has been locked.
Active Subscriptions:

None
14 years 1 month ago #21518 by phiree
OK discovered the problem

had to add publish_stream to the list of permissions in JFBconnect
The topic has been locked.
Active Subscriptions:

None
14 years 1 month ago #21519 by phiree
SOLVED
The topic has been locked.
Active Subscriptions:

None
14 years 1 month ago #21521 by phiree

mtk wrote:

phiree2 wrote: Ive noticed from the JFBconnect documentaiton that you advise removing the application secret id etc from the Jomsocial application.

However this is a problem as it stops jomsocial from updating peoples facebook status when they post to the jomsocial wall.

Any ideas?

Hello,
this is way we've included with JFBC a plugin to replace that functionality and Post JomSocial Activity to User's Facebook Wall .

if you have any further questions, please post from the user you've purchased the subscription with.

Thank you,
Mati


Its posting the status updates - but no link back to the site or log from the site - is this an open graph thing?

I know the link appears at the top of the status post, but we need the link to appear and url image to appear as part of the image.
The topic has been locked.
Support Specialist
14 years 1 month ago #21549 by alzander
Right now, we don't post a link with the message, though I agree, that could be a nice (easy) addition to the plugin. For now, if you want to hard-code the URL for your site, you can edit the /plugins/community/jfbcjsactivity/jfbcjsactivity.php file. At the bottom, you'll see:
$this->jfbcLibrary->setFacebookMessage($message);
Change that to be:
$post = array();
       $post['message'] = $message;
       $post['link'] = 'http://link-to-site.com/';
       $post['picture'] = 'http://site.com/link-to-picture.jpg';
       $this->jfbcLibrary->setFacebookMessage($post);

Hope that helps, but if you run into any issues, let us know!

Alex
The topic has been locked.