Git Product home page Git Product logo

Comments (3)

abhishekdgeek avatar abhishekdgeek commented on June 25, 2024

function postPhotoToPage (pageID) {
var url = "http://www.w3schools.com/images/w3logotest2.png";
var textmsg = "Image Description";
var msg = {
"url": url,
"access_token": page_access_token,
"message": textmsg,
"from":page_id,
"published": true,
};
FB.api(
"/"+pageID+"/photos",
"POST",
msg,
function (response) {
if (response && !response.error) {
console.log(response.id);
console.log(response.post_id);
console.log(page_access_token);
}
else
console.log(response.error);
}
);
}

This function works fine with FB JS SDK. May I know the syntax for same in node? I mean how do I send more parameters other than message in Node.JS SDK?

from facebook-node-sdk.

mcbjam avatar mcbjam commented on June 25, 2024

Hi. The question was about upload a local Photo. ( So there are no URL).

I wrote this function :

  var request = require('request');
  module.exports.postImage = function (options, cb) {
  var fburl = 'https://graph.facebook.com/'+ options.pageid+ '/photos?access_token=' +      options.token_page;
 var requete = request.post(fburl, function (err, res, body) {
  if (err) {
      console.error('Upload failed:', err);
      cb(err, null);  
 } else {
     console.log('Server Respond with:', body);
     result = JSON.parse(body);
     if (result.post_id)
        cb(null, result.post_id); 
     else
         cb(result.error, null);        
  }
 });
 var form = requete.form();
 form.append('source', fs.createReadStream(options.file));
 form.append('message', options.message);
 }

from facebook-node-sdk.

dantman avatar dantman commented on June 25, 2024

1.1.0-alpha1 now accepts Buffers, ReadStreams, or an object containing { value: [Buffer/ReadStream], options: { ... } } as param values for file uploads.

from facebook-node-sdk.

Related Issues (20)

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.