Is there any way I can pass blob directly to facebook share dialog since I dont have any url. I have an image in the form of blob data which I want to post on facebook.
window.FB.ui({
display: 'popup',
method: 'share',
action_type: 'og.likes',
action_properties: {
object : my blob data
}
}, function(response){});
Above code is not working since object only takes https url. Is there any way I can pass blob data