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.

Text is a sequence of characters that is most often used to represent a cohesive piece of information.

learn more… | top users | synonyms

0
votes
0answers
24 views

How to share image and text to facebook app

I am trying to share an image and text. When I'm doing this: Intent share = new Intent(Intent.ACTION_SEND); share.setType("image/*"); ByteArrayOutputStream bytes = new ...
-1
votes
0answers
20 views

Button Facebook with predefined text, No url,No send automatically [closed]

Open a window, once the user logged in display a predefined message, as on twitter. is possible??
0
votes
1answer
90 views

iOS 6+ Facebook / Twitter share - pre-populate text or not

I have been getting into iOS 6 and its Share functionality. I see that some people (e.g. apple in their app store), pre-populate the Facebook share pop-up with some relevant text, while others leave ...
0
votes
0answers
103 views

Facebook. Upload photo on user's wall with custom text over photo

I want to upload photo on user's wall with custom text over photo. How to do It? I already have script for upload photo on user's wall, just need text on It. Someone can help me? Thank you.
0
votes
0answers
54 views

share linked text on facebook from iPhone app

I am iPhone developer, am trying to share post that contains linked text (text linked to facebook page) using @[pageid:title] but it appears empty on facebook :( any suggestions? note: the other text ...
0
votes
0answers
72 views

Facebook API - Taggable Text Area

I am building a Facebook app and need to provide app users with a text box in which they can tag their friends. The contents of this text area will be stored in an SQL database and will not be ...
0
votes
1answer
102 views

Hide text besides post image when sharing a post from my website to facebook

Here is my website: http://www.hotaphrodite.com/ When someone tries to share a post to facebook, there's always a weird text (meta tags I guess) that goes with the post. I wanna know how to hide it. ...
0
votes
2answers
518 views

Script to open web pages, fill texts and click buttons

I'd like to write a script, preferably a Python code, to fill text areas in web pages and then click certain buttons. I've come across some solutions for this but none worked, mainly because cookies ...
2
votes
2answers
3k views

Facebook Login button custom text reverting

hopefully you can help me with this issue. I've grabbed the basic login button code from the FB developers site and I'm writing it out as is: <div id="fb-root"></div> ...
0
votes
0answers
723 views

Rich Text Formatting in FB Status updates [closed]

I did not find a "Suggestions" option in the Facebook homepage and hence, had to take this route. Pardon me, if this wasted your time. I just realized that Facebook should introduce RTF (Rich Text ...
0
votes
2answers
574 views

How to Google + Style Text Input Expanding Box

In G+ and Facebook, when you click the text input box (for updates) it will expand and give you more options. For example a submit button or another text input field. For the life of me I can't find ...
2
votes
1answer
290 views

Cannot resize Facebook Comments and some other text in Chrome

Thanks in advance for your help! I have noticed that some text will not resize when I browse with Chrome, including embedded Facebook Comments, the Mailchimp Application, and other text that I've come ...
2
votes
0answers
213 views

Text Templates - Open Graph Aggregations - Operator with Formatter

Facebook provides the ability to use text formatters to format Open Graph data. https://developers.facebook.com/docs/opengraph/template/ Therefore you can use: {my_duration | duration} to display a ...
0
votes
1answer
201 views

change text button of the dialog request component

Considering the component (http://developers.facebook.com/docs/reference/dialogs/requests/), I would like know how to change the text of your button. I would like replace the "SEND REQUEST" to just ...
0
votes
1answer
137 views

Facebook text field detection

i just want to ask if there is an api for facebook to detect any text field, be it status update text field or comment text field or any other.
1
vote
2answers
391 views

Triming and creating a text ellipsis in Javascript based NOT on the number of characters but the number of line breaks

I want to program a function that takes in some text and makes a trim on it based on the number of line breaks it has, I want it to trim and place "... Read more" after it hits 6 line breaks, sorta ...
1
vote
2answers
173 views

How Facebook deals with text overflow?

I'm doing a comments system, but there's something that keeps bugging me. For an example when I post a comment that contains 300 symbols without spaces between them it will overflow the commentbox. ...