Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I had made a facebook tab which post on user's friends wall (feed).

Using following code:

$facebook->api
                (
                    '/'.$sendTo.'/feed/',
                    'post',
                    array('access_token' => $facebook->access_token,
                    'message' => ''.$send_service ,
                    'name' => 'She\'s got ****\'s Skin!',
                    'description' => ''.$nam1.' has nominated you to be a Pond\'s girl :)  Do return the favor :) ',                    
                    'picture' => 'http://www.mydomain.com/fb_tabs/ponds/rec/images/ponds.png',
                    'link' => 'https://www.facebook.com/mypage/app_[app_id]',
                    'auto_publish' => false,
                    'target_id' => '$tag'
                    )

It was showing the post as I wanted. Here is the example: View Images

Please ignore the blue box in the image.

But for the last two days, it is commming like this: View Image

Can anyone please let me know what I am doing wrong.

share|improve this question
Hi Sankalp I'm not able to understand the exact issue you face, can you please explain it again in detail. – Viral Solani Jul 24 '12 at 11:21
when i made the app it was working fine as I want it to work, and the posts that are going on users wall were as shown in linkimage. but from last two days the wall posts are looking like linkImage2 Now what I want to know that how this is possible or where I am going wrong coz. I had not changed the code at all. its the same as the previous one. how the wall posts got altered. – Sankalp Srivastava Jul 24 '12 at 11:58

1 Answer

Well you need not have to worry about it because facebook also changes in it layout sometime so it will look like that.

You cant do anything in that because things are in not your hand.

Hope it helps.

share|improve this answer
But what reason should i put forward to my seniors. Do you have any idea why these changes occurred. Even if facebook changed its layout, when will it get back to its original form and my post will start looking the way they has to.. – Sankalp Srivastava Jul 25 '12 at 4:29
See one thing you don't have any control to design your post in facebook. you can do one thing if your post not look nice you can set image height and width. your senior will also understand this. dnt wry. – Viral Solani Jul 25 '12 at 5:48
Thanks for help – Sankalp Srivastava Jul 26 '12 at 6:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.