https://github.com/yukihirai0505/sgoogle
A Scala library for the Google API.
https://github.com/yukihirai0505/sgoogle
google scala scala-library
Last synced: 13 days ago
JSON representation
A Scala library for the Google API.
- Host: GitHub
- URL: https://github.com/yukihirai0505/sgoogle
- Owner: yukihirai0505
- License: mit
- Created: 2017-04-25T04:31:58.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-30T06:46:59.000Z (about 9 years ago)
- Last Synced: 2025-01-13T13:49:14.721Z (over 1 year ago)
- Topics: google, scala, scala-library
- Language: Scala
- Size: 4.57 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# sGoogle
A Scala library for the Google API.
An asynchronous non-blocking Scala Google API Wrapper,
implemented using play-json.
## Prerequisites
Scala 2.11.+ is supported.
Create the google project to get client_id and create_secret.
https://console.developers.google.com/iam-admin/projects
## Setup
TODO
## Usage
### Examples
TODO
## Reference
[Google OpenID Connect](https://developers.google.com/identity/protocols/OpenIDConnect)
[Google Calendar API](https://developers.google.com/google-apps/calendar/v3/reference/)
## curl get token test
```
curl -H "Content-Type: application/x-www-form-urlencoded" \
--request POST \
--data 'code=&client_id=&client_secret=&redirect_uri=&grant_type=authorization_code' \
"https://www.googleapis.com/oauth2/v4/token"
```