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 am using the restfb Java api (from Scala) to post to Facebook. I have two questions. i) If you put a link in the message field of a post, it will automatically be rendered as a link. But what if you want to include link text instead of the href in the post message? Including Dude gets rendered as a string. But clearly there are many examples of things like "Hey, check out this car , where car is a link. How do you do this?

ii) Facebook is including the description of my company in each post. I set the description field to the empty String and its still showing up. I even removed the description from the settings page for my Facebook app and its still showing up. Any ideas?

Thanks.

share|improve this question

1 Answer

Instead of putting the link in the message parameter, you can put it in the link parameter of your HTTP POST to the Graph API. Otherwise, it cannot be done with an inline link that has text (like what you can do with normal href's).

I don't know of a way to remove a description meta tag once it's been set. Try just a period instead of an empty string to see if that works.

share|improve this answer
Thanks for the quick response! I was hoping to put something else in the link parameter but you are right - Its definitely an option. I tried an empty String for the description and that didn't work. Are you familiar with anything in the newest apis that can accomplish this or even something more flexible? – jackw Feb 3 '12 at 17:52
sorry, I don't. Happy coding. – DMCS Feb 3 '12 at 17:54
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers accepted. Thank you! – DMCS Apr 17 '12 at 20:19

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.