https://github.com/wanadev/wanashare
Share medias on Twitter and Facebook
https://github.com/wanadev/wanashare
Last synced: about 2 months ago
JSON representation
Share medias on Twitter and Facebook
- Host: GitHub
- URL: https://github.com/wanadev/wanashare
- Owner: wanadev
- License: bsd-3-clause
- Created: 2015-09-22T14:11:50.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-17T08:16:31.000Z (almost 8 years ago)
- Last Synced: 2025-03-08T08:07:53.136Z (about 2 months ago)
- Language: JavaScript
- Size: 107 KB
- Stars: 1
- Watchers: 5
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Wanashare - Share medias on Twitter and Facebook
[](https://www.npmjs.com/package/wanashare)
[](https://github.com/wanadev/wanashare/blob/master/LICENSE)
[]()
[]()Wanashare allows you to upload a photo (with a status message) on **Twitter** and **Facebook**. It is intended to be used by client-side web applications. The server-side part is still required but is minimalistic (no session, no cookies needed) and can be integrated into any **Express.js** app. The access tokens are stored in the user's `localStorage` and are never saved on the server.
## Getting started
Folders:
app/ -- The server side part (to use in any Express app)
lib/ -- The client side part
lib_src/ -- The client side part (source code, need to be built with browserify)
demo/ -- A working demo (see the "Run demo server" section)### Server Side
This lib require **Node.js** and **Express.js** for the server part.
```javascript
var express = require("express");
var Twitter = require("wanashare").Twitter;var app = express();
new Twitter(app, "Twitter app's Consumer Key", "Twitter app's Consumer Secret");
var server = app.listen(3000);
``````javascript
var express = require("express");
var Facebook = require("wanashare").Facebook;var app = express();
new Facebook(app, "Facebook app's ID", "Facebook app's Secret");
var server = app.listen(3000);
```### Client Side
```html
var twitter = new wanashare.Twitter();
twitter.share(
"Message", // The tweet content
photo, // The image to share (Blob or data64URI string)
function (error) {
if (error) {
alert("An error occured!");
} else {
alert("Done :D");
}
}
});```
```html
var fb = new wanashare.Facebook();
fb.share(
"Message", // The tweet content
photo, // The image to share (Blob or data64URI string)
function (error) {
if (error) {
alert("An error occured!");
} else {
alert("Done :D");
}
}
});```
## Build client libs
If you made changes in `lib_src/`, you should rebuild the `lib/wanashare.js` file:
npm install # only once
npm run build## Run demo server
To run the demo server, first put your own app keys in `demo/server.js` file and then run the following command:
npm run server
## Changelog
* **0.2.5**: Updates dependencies
* **0.2.4**: Updates dependencies
* **0.2.3**: Use https instead of ssh for repositiories addresses
* **0.2.2**: Allow empty messages
* **0.2.1**: Minor fixes in package.json and README.md
* **0.2.0**: Facebook support
* **0.1.0**: Initial release, Twitter support