Created
March 10, 2017 21:40
-
-
Save dreadjr/3269d8d4632c1ce5c393a6134d68de1b to your computer and use it in GitHub Desktop.
Node.js module for basic Twitter update_with_media support. You will need to install 'request' packages from npm like so:
npm install request
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fs = require('fs') | |
path = require('path') | |
request = require('request') | |
class twitter_update_with_media | |
constructor: (@auth_settings) -> | |
@api_url = 'https://api.twitter.com/1.1/statuses/update_with_media.json' | |
post: (status, file_path, callback) -> | |
r = request.post(@api_url, oauth:@auth_settings, callback) | |
form = r.form() | |
form.append('status', status) | |
form.append('media[]', fs.createReadStream(path.normalize(file_path))) | |
module.exports = twitter_update_with_media |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Generated by CoffeeScript 1.6.3 | |
(function() { | |
var fs, path, request, twitter_update_with_media; | |
fs = require('fs'); | |
path = require('path'); | |
request = require('request'); | |
twitter_update_with_media = (function() { | |
function twitter_update_with_media(auth_settings) { | |
this.auth_settings = auth_settings; | |
this.api_url = 'https://api.twitter.com/1.1/statuses/update_with_media.json'; | |
} | |
twitter_update_with_media.prototype.post = function(status, file_path, callback) { | |
var form, r; | |
r = request.post(this.api_url, { | |
oauth: this.auth_settings | |
}, callback); | |
form = r.form(); | |
form.append('status', status); | |
return form.append('media[]', fs.createReadStream(path.normalize(file_path))); | |
}; | |
return twitter_update_with_media; | |
})(); | |
module.exports = twitter_update_with_media; | |
}).call(this); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
twitter_update_with_media = require 'twitter_update_with_media' | |
tuwm = new twitter_update_with_media({ | |
consumer_key: '...' | |
consumer_secret: '...' | |
token: '...' | |
token_secret: '...' | |
}) | |
tuwm.post('This is a test', '/path_to_image.png', (err, response) -> | |
console.log(err) if err | |
console.log(response) | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var twitter_update_with_media = require('twitter_update_with_media'); | |
var tuwm = new twitter_update_with_media({ | |
consumer_key: '...', | |
consumer_secret: '...', | |
token: '...', | |
token_secret: '...' | |
}); | |
tuwm.post('This is a test', '/path_to_image.png', function(err, response) { | |
if (err) { | |
console.log(err); | |
} | |
console.log(response); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment