Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Here is an objective answer to your new question, "What do I do next?"</p> <p>A quick look at the source code leads me to believe this is what you do:</p> <p>Check this URL for the REST (<a href="http://en.wikipedia.org/wiki/Representational_State_Transfer" rel="nofollow noreferrer">http://en.wikipedia.org/wiki/Representational_State_Transfer</a>) API methods you can use to leave a comment/post:</p> <p><a href="http://developers.facebook.com/docs/reference/rest/" rel="nofollow noreferrer">http://developers.facebook.com/docs/reference/rest/</a></p> <p>Specifically this: <a href="http://developers.facebook.com/docs/reference/rest/links.post" rel="nofollow noreferrer">http://developers.facebook.com/docs/reference/rest/links.post</a></p> <p>Check out lines 171 through 295 of Facebook.java <a href="http://github.com/facebook/facebook-android-sdk/blob/master/facebook/src/com/facebook/android/Facebook.java" rel="nofollow noreferrer">http://github.com/facebook/facebook-android-sdk/blob/master/facebook/src/com/facebook/android/Facebook.java</a></p> <p>To see how to use the API to make these requests.</p> <p>You'll probably want this method (it's overloaded, see the code).</p> <pre><code> /** * Make a request to Facebook's old (pre-graph) API with the given * parameters. One of the parameter keys must be "method" and its value * should be a valid REST server API method. * * See http://developers.facebook.com/docs/reference/rest/ * * Note that this method blocks waiting for a network response, so do not * call it in a UI thread. * * Example: * &lt;code&gt; * Bundle parameters = new Bundle(); * parameters.putString("method", "auth.expireSession"); * String response = request(parameters); * &lt;/code&gt; * * @param parameters * Key-value pairs of parameters to the request. Refer to the * documentation: one of the parameters must be "method". * @throws IOException * if a network error occurs * @throws MalformedURLException * if accessing an invalid endpoint * @throws IllegalArgumentException * if one of the parameters is not "method" * @return JSON string representation of the response */ public String request(Bundle parameters) </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload