2.0.0 • Published 4 years ago

hatena-fotolife-api v2.0.0

Weekly downloads
10
License
MIT
Repository
github
Last release
4 years ago

hatena-fotolife-api

Hatena::Fotolife API wrapper for Node.js (unofficial)

Installation

npm install hatena-fotolife-api

Usage

See examples/.

import fotolife from 'hatena-fotolife-api';

const client =
  fotolife({ type: 'wsse', username: 'username', apikey: 'apikey' });
const options = { title: 'bouzuya\'s icon', file: './bouzuya.png' };

client.create(options).then(() => {
  console.log('uploaded');
}, (err) => {
  console.error(err);
});

Configuration (WSSE/OAuth)

WSSE

See "How to use Hatena WSSE".

OAuth

See "How to use Hatena OAuth".

Application scope is "read_private" or "write_private" or both.

var fotolife = require('hatena-fotolife-api');

var client = fotolife({
  type: 'oauth',
  consumerKey: 'consumerKey',
  consumerSecret: 'consumerSecret',
  accessToken: 'accessToken',
  accessTokenSecret: 'accessTokenSecret'
});

// ...

API Docs

See Hatena::Fotolife Atom API, test/ and examples/.

Development

npm run

License

MIT

Author

bouzuya <m@bouzuya.net> (http://bouzuya.net)

Badges

Build Status Dependencies status Coverage Status

2.0.0

4 years ago

1.0.0

5 years ago

0.4.1

9 years ago

0.4.0

10 years ago

0.2.4

10 years ago

0.3.0

10 years ago

0.2.3

10 years ago

0.2.2

10 years ago

0.2.1

10 years ago

0.2.0

10 years ago

0.1.0

10 years ago