Hi,
Trying to publish a stream to facebook using py facebook. The stream publishes a single attachment perfectly i.e media or name or href , e.t.c
But when it comes to appending all the attachments in one line it breaks down and just publishes the message.
attachment = [media,description] etc does not work.
message = "Test Message with Picture"
media = {'media':[
{'type': 'image',
'src': 'http://www.topnews.in/usa/files/megan-fox.jpg',
'href': 'http://www.topnews.in/usa/files/megan-fox.jpg'},
{'type': 'image',
'src': 'http://www.topnews.in/usa/files/megan-fox.jpg',
'href': 'http://ihasahotdog.com/upcoming/?pid=20869'}]}
name = {'name':'testing'}
href = {'href':'http://google.com'}
caption = 'caption' :'caption goes here'
description = { 'description':'Description Goes Here'}
attachment = media
The second problem is the popup box while publishing in this manner. Python does not show a popup box, it directly publishes to the stream. How can one put a pop up box?