fbgraph
fbgraph copied to clipboard
NodeJs module to access the facebook graph api
code ```js var wallPost = { message: "I'm gonna come at you like a spider monkey, chip!" }; graph.post("/feed", wallPost, function(err, res) { // returns the post id console.log(res); //...
With the recent issue that Facebook had, we have been getting a lot of errors generated by the code below: ``` return request.get(this.options, function(err, res, body) { if (err) {...
Where can we find tutorials on how you use fbgraph for major projects?
npm WARN deprecated [email protected]: request has been deprecated, see https://github.com/request/request/issues/3142 It looks like this library needs to migrate from requestjs, to something like AxiosJS. Ref: https://github.com/criso/fbgraph/blob/master/package.json#L18
AWAIT
Hey guys, sorry, I'm new to NodeJS. Is there any way to await for a post call??
This problem occurs when I set the timeout option. Examlpe: ``` const fbgraph = require('fbgraph'); const token = 'xxx'; // access token describe('test1', () => { it('fbgraph', done => {...
My changes are related to multipart requests (required for uploading images) check commit : bde6d29 The idea is to call the graph.multipart ... I'm using this in a production system....
Currently, calling the _batch_ function and issuing a batch requets, will yield an array of results as received from facebook. This array will include the response code and headers for...
The idea is to maintain compatibility, but move all of the module level variables to instance properties. This allows prototypical inheritance so that the setters don't affect other areas of...