Tiffany, you reall
Chris! I told you
Once considered th
Once considered th
Quietly, Quiggly s
Once considered th
We've recently dis
Stop dancing like
Stop dancing like
Stop dancing like

Quitetly, Quiggly
That turned dark q
Chapter 1. Once
Quitetly, Quiggly
Quietly, Quiggly s
We've recently dis
Joe's Bar and Gril
Quietly, Quiggly s
Tiffany, you reall
Concrete may have
Chapter 1. Once ive completed two different apps for the company. But its a challenge to find a third one for them that will be different from the rest. I've completed one app (a dating app) for them and it was a huge success and they gave me another app to work on. They say it is to be finished by next week, but there is so much work left for it that I'm unable to complete it. I have developed the basic structure, but now I'm stuck at making it dynamic. The app is called Findmywinks and it's a link sharing app. So when you share the link with a friend via facebook it will appear on his/her home page as a link sharing notification. The reason I have to make it dynamic is because I'm able to use this same app to send link sharing notifications for other social networks as well. For example you can share the link with twitter and it would appear on the friend's twitter page as a tweet notification. I was able to do this by adding a feature to send the link to the user's twitter account. But I didn't have the functionality to send different messages for different users(i.e. notification for facebook and twitter for one person), so I implemented it in this way: every time you upload a link it has to send the same message in every social network(facebook, twitter, linkedin, facebook etc as and when required). In other words, the app has to collect the link from facebook and send the same link as tweet notification. If the user deletes/modifies the facebook post, it has to delete/modify the link in twitter as well. Then the app has to collect the link from twitter and send it as a facebook post. I have already added the twitter and linkedin to the app but it doesn't send a notification. Instead, it just displays all the posts for that particular social network on the person's home screen. But when you add a link to the feed for the first time it just shows a message "You can view facebook posts from this page". The user then has to click on the message in the home screen to view the posts. Here, I don't know how to modify the message to send the link in a new post. So, my question is: how do I modify the message for the Facebook link sharing? A: If you are adding a link to an existing feed, it is no longer an update. So facebook's feed item processing mechanism is not going to apply. Instead, it will create a post for you on your wall, with the link included. But I think the twitter and linkedin are going to need the same thing. The only problem is: since you would have posted to twitter, it would have removed your existing message. But if you don't remove your message, the twitter feed will show that you are constantly posting links to your wall. I don't see any better way to do this, unless you really want to keep the message for facebook...? A: Check for the 'updated_time' parameter in the FB Graph API for the specific feed. This parameter has a timestamp for when the feed item was posted. Since it is a parameter that you specify you should be able to modify it. Example: http://graph.facebook.com/[PAGE_ID]/feed?updated_time=[TIMESTAMP]&access_token= A: I was able to resolve this issue by myself and found that this problem is the result of the Facebook changes made on Jan 15th 2013. https://developers.facebook.com/blog/post/525/ We should be using message_tags now. We cant give it a title anymore (no more than 100 characters). We have to mention it by the value too. It does look ugly (and for newbies like me, tough) but it works. Notice how we have to add description and url twice in order to make it work? If anyone has an idea, feel free to contribute. A: For posting a link on the wall: $postUrl = $this->config->facebook->link($item['link']); $postParams = array( 'message' => $item['message'] ); $this->facebook->api('/'.$item['name'], 'post', $postParams, $postUrl); This will post a link. The link variable is the variable you want to link to. This is optional. For adding data to a link: $postParams = array( 'message' => 'your data goes here' ); $postUrl = $this->config->facebook->link($item['link']); $this->facebook->api('/'.$item['name'], 'post', $postParams, $postUrl); This is a little more confusing, because you have to pass the POST URL to facebook, and then send data to that. The data that you send is sent as a GET variable, so you can access it on the link. I found a better tutorial that explains it better than I did: http://gabrielrcolella.com/2012/05/25/accessing-facebook-share-from-external-url/