An open API service indexing awesome lists of open source software.

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.

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"
```