|
1 |
| -node-ovh |
2 |
| -======== |
| 1 | +[](http://ovh.github.io/node-ovh) |
3 | 2 |
|
4 |
| -[](http://travis-ci.org/gierschv/node-ovh) |
| 3 | +The easiest way to use the [OVH.com](http://ovh.com) APIs in your [node.js](http://nodejs.org/) applications. |
5 | 4 |
|
6 |
| -node-ovh is a Node.js helper library for [OVH REST APIs](https://api.ovh.com). |
| 5 | +[](https://www.npmjs.org/package/express) |
| 6 | +[](http://travis-ci.org/ovh/node-ovh) |
| 7 | +[](https://coveralls.io/r/ovh/node-ovh?branch=master) |
7 | 8 |
|
8 |
| -Since the v1.0.0 of this module, the OVH WS are not supported anymore. |
9 |
| -The [branch v0.3](https://github.com/gierschv/node-ovh/tree/v0.3) is still maintained. |
| 9 | +```js |
| 10 | +// Create your first application tokens here: https://api.ovh.com/createToken/?GET=/me |
| 11 | +var ovh = require('ovh')({ |
| 12 | + appKey: process.env.APP_KEY, |
| 13 | + appSecret: process.env.APP_SECRET, |
| 14 | + consumerKey: process.env.CONSUMER_KEY |
| 15 | +}); |
10 | 16 |
|
11 |
| -**This library is unofficial and consequently not maintained by OVH.** |
| 17 | +ovh.request('GET', '/me', function (err, me) { |
| 18 | + console.log(err || 'Welcome ' + me.firstname); |
| 19 | +}); |
| 20 | +``` |
| 21 | + |
| 22 | +## Installation |
| 23 | + |
| 24 | +The easiest way to get the latest stable release is to grab it from the |
| 25 | +[npm registry](https://npmjs.org/package/ovh). |
| 26 | + |
| 27 | +```bash |
| 28 | +$ npm install ovh |
| 29 | +``` |
| 30 | + |
| 31 | +Alternatively, you may get latest development version directly from Git. |
| 32 | + |
| 33 | +```bash |
| 34 | +$ npm install git://github.com/ovh/node-ovh.git |
| 35 | +``` |
| 36 | + |
| 37 | +## Example Usage |
| 38 | + |
| 39 | +### Login as a user |
| 40 | + |
| 41 | +#### 1. Create an application |
| 42 | + |
| 43 | +Depending the API you plan yo use, you need to create an application on the below |
| 44 | +websites: |
12 | 45 |
|
13 |
| -Documentation |
14 |
| ------------- |
| 46 | +* [OVH Europe](https://eu.api.ovh.com/createApp/) |
| 47 | +* [OVH North-America](https://ca.api.ovh.com/createApp/) |
| 48 | +* [RunAbove](https://api.runabove.com/createApp/) |
15 | 49 |
|
16 |
| -The documentation is available online: http://gierschv.github.io/node-ovh |
| 50 | +Once created, you will obtain an **application key (AK)** and an **application |
| 51 | +secret (AS)**. |
17 | 52 |
|
18 |
| -License |
19 |
| -------- |
| 53 | +#### 2. Authorize your application to access to a customer account |
20 | 54 |
|
21 |
| -node-ovh is freely distributable under the terms of the MIT license. |
| 55 | +To allow your application to access to a customer account using an OVH API, |
| 56 | +you need a **consumer key (CK)**. |
22 | 57 |
|
| 58 | +Here is a sample code you can use to allow your application to access to a |
| 59 | +complete account. |
| 60 | + |
| 61 | +Depending the API you want to use, you need to specify the below API endpoint: |
| 62 | + |
| 63 | +* OVH Europe: ```ovh-eu``` (default) |
| 64 | +* OVH North-America: ```ovh-ca``` |
| 65 | +* RunAbove: ```runabove-ca``` |
| 66 | + |
| 67 | +```js |
| 68 | +var ovh = require('ovh')({ |
| 69 | + endpoint: 'ovh-eu', |
| 70 | + appKey: 'YOUR_APP_KEY', |
| 71 | + appSecret: 'YOUR_APP_SECRET' |
| 72 | +}); |
| 73 | + |
| 74 | +ovh.request('POST', '/auth/credential', { |
| 75 | + 'accessRules': [ |
| 76 | + { 'method': 'GET', 'path': '/*'}, |
| 77 | + { 'method': 'POST', 'path': '/*'}, |
| 78 | + { 'method': 'PUT', 'path': '/*'}, |
| 79 | + { 'method': 'DELETE', 'path': '/*'} |
| 80 | + ] |
| 81 | +}, function (error, credential) { |
| 82 | + console.log(error || credential); |
| 83 | +}); |
23 | 84 | ```
|
24 |
| -Copyright (c) 2012 - 2013 Vincent Giersch <[email protected]> |
25 | 85 |
|
26 |
| -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation |
27 |
| -files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, |
28 |
| -copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: |
| 86 | +```bash |
| 87 | +$ node credentials.js |
| 88 | +{ validationUrl: 'https://api.ovh.com/auth/?credentialToken=XXX', |
| 89 | + consumerKey: 'CK', |
| 90 | + state: 'pendingValidation' } |
| 91 | +``` |
29 | 92 |
|
30 |
| -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. |
| 93 | +This consumer key can be scoped with a **specific authorization**. |
| 94 | +For example if your application will only send SMS: |
31 | 95 |
|
32 |
| -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 96 | +```javascript |
| 97 | +ovh.request('POST', '/auth/credential', { |
| 98 | + 'accessRules': [ |
| 99 | + { 'method': 'POST', 'path': '/sms/*/jobs'}, |
| 100 | + ] |
| 101 | +}, function (error, credential) { |
| 102 | + console.log(error || credential); |
| 103 | +}); |
33 | 104 | ```
|
34 | 105 |
|
| 106 | +Once the consumer key will be authorized on the specified URL, |
| 107 | +you'll be able to play with the API calls allowed by this key. |
| 108 | +
|
| 109 | +#### 3. Let's play! |
| 110 | +
|
| 111 | +You are now be able to play with the API. Look at the |
| 112 | +[examples available online](http://ovh.github.io/node-ovh#examples). |
| 113 | +
|
| 114 | +You can browse the API schemas using the web consoles of the APIs: |
| 115 | +
|
| 116 | +* [OVH Europe](https://eu.api.ovh.com/console/) |
| 117 | +* [OVH North-America](https://ca.api.ovh.com/console/) |
| 118 | +* [RunAbove](https://api.runabove.com/console/) |
| 119 | +
|
| 120 | +## Full documentation and examples |
| 121 | +
|
| 122 | +The full documentation is available online: http://ovh.github.io/node-ovh. |
| 123 | +
|
| 124 | +## Hacking |
| 125 | +
|
| 126 | +### Get the sources |
| 127 | +
|
| 128 | +```bash |
| 129 | +git clone https://github.com/ovh/node-ovh.git |
| 130 | +cd node-ovh |
| 131 | +``` |
| 132 | +
|
| 133 | +You've developed a new cool feature ? Fixed an annoying bug ? We'd be happy |
| 134 | +to hear from you ! |
| 135 | +
|
| 136 | +### Run the tests |
| 137 | +
|
| 138 | +Tests are based on [mocha](http://visionmedia.github.io/mocha/). |
| 139 | +This package includes unit and integration tests. |
| 140 | +
|
| 141 | +``` |
| 142 | +git clone https://github.com/ovh/node-ovh.git |
| 143 | +cd node-ovh |
| 144 | +npm install -d |
| 145 | +npm test |
| 146 | +``` |
| 147 | +
|
| 148 | +Integration tests use the OVH /domain/zone API, the tokens can be created |
| 149 | +[here](https://api.ovh.com/createToken/). |
| 150 | +
|
| 151 | +``` |
| 152 | +export APP_KEY=xxxxx |
| 153 | +export APP_SECRET=yyyyy |
| 154 | +export CONSUMER_KEY=zzzzz |
| 155 | +export DOMAIN_ZONE_NAME=example.com |
| 156 | +npm run-script test-integration |
| 157 | +``` |
| 158 | +
|
| 159 | +### Documentation |
| 160 | +
|
| 161 | +The documentation is based on [Github Pages](https://pages.github.com/) and is |
| 162 | +available in the *gh-pages* branch. |
| 163 | +
|
| 164 | +
|
| 165 | +## Supported APIs |
| 166 | +
|
| 167 | +### OVH Europe |
| 168 | +
|
| 169 | +- **Documentation**: https://eu.api.ovh.com/ |
| 170 | +- **Community support**: [email protected] |
| 171 | +- **Console**: https://eu.api.ovh.com/console |
| 172 | +- **Create application credentials**: https://eu.api.ovh.com/createApp/ |
| 173 | +
|
| 174 | +### OVH North America |
| 175 | +
|
| 176 | +- **Documentation**: https://ca.api.ovh.com/ |
| 177 | +- **Community support**: [email protected] |
| 178 | +- **Console**: https://ca.api.ovh.com/console |
| 179 | +- **Create application credentials**: https://ca.api.ovh.com/createApp/ |
| 180 | +
|
| 181 | +### Runabove |
| 182 | +
|
| 183 | +- **Console**: https://api.runabove.com/console/ |
| 184 | +- **Create application credentials**: https://api.runabove.com/createApp/ |
35 | 185 |
|
36 |
| -[](https://bitdeli.com/free "Bitdeli Badge") |
| 186 | +### Related links |
37 | 187 |
|
| 188 | +- **Contribute**: https://github.com/ovh/node-ovh |
| 189 | +- **Report bugs**: https://github.com/ovh/node-ovh/issues |
| 190 | +- **Download**: http://npmjs.org/package/ovh |
0 commit comments