Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. FB.ui(
  2. {
  3. method: 'share_open_graph',
  4. action_type: 'og.likes',
  5. action_properties: JSON.stringify({
  6. object: {
  7. 'og:url': myurl,
  8. 'og:title': mytitle,
  9. 'og:description': mydescription,
  10. 'og:image': myimageURL,
  11. },
  12. }),
  13. },
  14. function(response) {
  15. console.log(response);
  16. // Action after response
  17. },
  18. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement