Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xgheaven/hdu-oauth2-client
https://github.com/xgheaven/hdu-oauth2-client
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/xgheaven/hdu-oauth2-client
- Owner: XGHeaven
- License: gpl-2.0
- Created: 2016-01-06T09:53:52.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-08T03:22:58.000Z (almost 9 years ago)
- Last Synced: 2024-10-16T00:42:52.075Z (3 months ago)
- Language: JavaScript
- Size: 22.5 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# hdu-oauth2-client
client for api.hdu.edu.cn
##Installation
`npm insatll hdu-oauth2-client`##Usage
```
var Client = require('hdu-oauth2-client');var hduClient = new Client({
id: 1202122,
secret: secret,
});hduClient.get(urlApi, function (err, response){
//.......
});
```