https://github.com/embbnux/simpleglip
A simple Glip client with RESTful API
https://github.com/embbnux/simpleglip
glip react restful-api ringcentral-widgets
Last synced: about 1 month ago
JSON representation
A simple Glip client with RESTful API
- Host: GitHub
- URL: https://github.com/embbnux/simpleglip
- Owner: embbnux
- Created: 2017-12-11T08:08:31.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T16:27:35.000Z (over 2 years ago)
- Last Synced: 2025-03-29T10:33:35.656Z (about 2 months ago)
- Topics: glip, react, restful-api, ringcentral-widgets
- Language: JavaScript
- Homepage: https://embbnux.github.io/SimpleGlip/
- Size: 5.93 MB
- Stars: 20
- Watchers: 1
- Forks: 2
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# [Simple Glip](https://embbnux.github.io/SimpleGlip/)
## Introduction
This is simple version of RingCentral Glip with RESTful API.
Built with:
* [RingCentral Commons](https://github.com/ringcentral/ringcentral-js-widgets/tree/master/packages/ringcentral-integration)
* [RingCentral Widgets](https://github.com/ringcentral/ringcentral-js-widgets/tree/master/packages/ringcentral-widgets)
## Visit Online
Visit app [website](https://embbnux.github.io/SimpleGlip/) in github pages.
## Dependences
* yarn
* webpack 2
* react
* redux## How to develop based on this app
### Clone the code
```bash
$ git clone https://github.com/embbnux/SimpleGlip.git
```### Create API secret file in project root path
```js
# api.json
{
"appKey": "your ringcentral app key",
"appSecret": "your ringcentral app sercet",
"server": "ringcentral sever url, eg: https://platform.devtest.ringcentral.com"
}
```The `appSecret` is optional to enable the authorization code flow. If you don't provide `appSecret`, the app will use the implicit grant flow.
App Permissions required: `Glip` and `Webhook Subscription`
### Start development server
```bash
$ yarn
$ yarn start
```Open site: 'http://localhost:8080/' on browser