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 have an app in which I can chat with my Facebook friends. enter image description here

Now I want to send a photo to my friend in chat just like the Facebook iOS app enter image description here

How can I do this??

Thanks.

share|improve this question
What have you tried? – 0x7fffffff Dec 19 '12 at 0:58
I have done the text chat part .. I don't know how to proceed further. – Ankur Dec 19 '12 at 4:26

1 Answer

up vote 3 down vote accepted
+50

Right now public Facebook Chat API doesn't support files attachments.

But, you can implement it yourself, for example follow this way:

  1. Upload image you want to send to any public server. For example look at QuickBlox Content code sample . You can upload image to it server and get public url. It's free.
  2. Send to opponent link to this image
  3. Opponent just show this image using link

thats all, hope this help

share|improve this answer

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.