Coder Social home page Coder Social logo

howard lee mosely jr.'s Projects

kod icon kod

https://fathomless-woodland-2340.herokuapp.com/

kod-b icon kod-b

furture<html> <head> <title>Open Graph Getting Started App - og.likes</title> <style type="text/css"> div { padding: 10px; } </style> <meta charset="UTF-8"> </head> <body> <div id="fb-root"></div> <script type="text/javascript"> // You probably don't want to use globals, but this is just example code var fbAppId = 'replace me'; var objectToLike = 'http://techcrunch.com/2013/02/06/facebook-launches-developers-live-video-channel-to-keep-its-developer-ecosystem-up-to-date/'; // 113971752004387 // This is boilerplate code that is used to initialize the Facebook // JS SDK. You would normally set your App ID in this code. // Additional JS functions here window.fbAsyncInit = function() { FB.init({ appId : fbAppId, // App ID status : true, // check login status cookie : true, // enable cookies to allow the server to access the session xfbml : true // parse page for xfbml or html5 social plugins like login button below }); // Put additional init code here }; // Load the SDK Asynchronously (function(d, s, id){ var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) {return;} js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/all.js"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); /* * This function makes a call to the og.likes API. The object argument is * the object you like. Other types of APIs may take other arguments. * (i.e. the book.reads API takes a book= argument.) * * Because it's a sample, it also sets the privacy parameter so that it will * create a story that only you can see. Remove the privacy parameter and * the story will be visible to whatever the default privacy was when you * added the app. * * Also note that you can view any story with the id, as demonstrated with * the code below. * * APIs used in postLike(): * Call the Graph API from JS: * https://developers.facebook.com/docs/reference/javascript/FB.api * The Open Graph og.likes API: * https://developers.facebook.com/docs/reference/opengraph/action-type/og.likes * Privacy argument: * https://developers.facebook.com/docs/reference/api/privacy-parameter */ function postLike() { FB.api( 'https://graph.facebook.com/me/og.likes', 'post', { object: objectToLike, privacy: {'value': 'SELF'} }, function(response) { if (!response) { alert('Error occurred.'); } else if (response.error) { document.getElementById('result').innerHTML = 'Error: ' + response.error.message; } else { document.getElementById('result').innerHTML = '<a href=\"https://www.facebook.com/me/activity/' + response.id + '\">' + 'Story created. ID is ' + response.id + '</a>'; } } ); } </script>

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.