Hi guys,
Using the social plugin, I am trying to tweet with an image attached.
The code works, the pop up appears, but if an image is attached I am unable to press “send” (it is disabled). Without an image attached it works fine. Incidentally I can send images from my photos folder manually just fine, so it’s not my device as such.
I am running an older OS (iOS 6.0.1)
Here is the code I’m using.
[lua]
native.showPopup( “social”,
{
service = “twitter”,
message = "I beat level " … Global_Player.levelIndex … “! #tinybirdstory Play here --> bhug.co/bird”,
listener = listener,
image = { filename=“twitter.jpg”, baseDir=system.DocumentsDirectory },
})
[/lua]
Notice in the screenshot that ‘send’ is disabled?
I can tweet photos from my albums, and I can tweet from the game with no photo attached. I’ve even tried different images and smaller file sizes < 100kb in case that was the issue. Anyone have any ideas?