Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
This library provides access to twitter (post/stream/update account/etc) functionality via real browser driven by Selenium Webdriver. API built on top of WebdriverIO library.
npm install twiser --save
var Client = require('twiser');
var client = new Client({
username: 'joe',
password: 'passx123'
});
client.api.login()
.setNewPassword('qwe123qwe')
.url('https://twitter.com/search?f=realtime&q=football&src=typd');
client.stream(function(tweet) {
console.log(tweet.text);
});
Currently tests are simple scripts using library, not formal Mocha tests yet. To run these you will need
to provide twitter username and password via environment variables TWITTER_USERNAME
and TWITTER_PASSWORD
.
Basic test:
DEBUG=* TWITTER_USERNAME=johndoe TWITTER_PASSWORD=password1 node test/basic.js
Streaming test:
DEBUG=* TWITTER_USERNAME=johndoe TWITTER_PASSWORD=password1 node test/streaming.js
For operation selenium webdriver need to be running, this library does not handle this for you. Easiest way to try it - download precompiled Selenium Server Standalone and run in separate terminal window:
java -jar selenium-server-standalone-2.43.1.jar
There are ways to make it work inside docker container, as soon as I figure that out, I will add documentation for it :)
FAQs
Twitter API via Chrome Browser
We found that twiser demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.