Skip to content

Commit

Permalink
Add Oura and RescueTime integrations. (NangoHQ#206)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsmura authored Mar 8, 2021
1 parent 2a0c9c9 commit 82bcc50
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 0 deletions.
2 changes: 2 additions & 0 deletions integrations/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ import './microsoft-teams.json'
import './moltin.json'
import './monday.json'
import './online.json'
import './oura.json'
import './pagerduty.json'
import './pinterest.json'
import './pipedrive.json'
Expand All @@ -51,6 +52,7 @@ import './product-hunt.json'
import './quickbooks-sandbox.json'
import './quickbooks.json'
import './reddit.json'
import './rescuetime.json'
import './revolut-sandbox.json'
import './sage.json'
import './salesforce.json'
Expand Down
20 changes: 20 additions & 0 deletions integrations/oura.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "Oura",
"image": "https://logo.clearbit.com/ouraring.com",
"auth": {
"authorizationURL": "https://cloud.ouraring.com/oauth/authorize",
"tokenURL": "https://api.ouraring.com/oauth/token",
"authType": "OAUTH2",
"tokenParams": {},
"authorizationParams": {},
"auth": { "response_type": "code" }
},
"request": {
"baseURL": "https://api.ouraring.com/v1/",
"headers": {
"Accept": "application/json",
"Authorization": "Bearer ${auth.accessToken}",
"User-Agent": "Pizzly"
}
}
}
20 changes: 20 additions & 0 deletions integrations/rescuetime.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "RescueTime",
"image": "https://logo.clearbit.com/rescuetime.com",
"auth": {
"authorizationURL": "https://www.rescuetime.com/oauth/authorize",
"tokenURL": "https://www.rescuetime.com/oauth/token",
"authType": "OAUTH2",
"tokenParams": {},
"authorizationParams": {},
"auth": { "response_type": "code" }
},
"request": {
"baseURL": "https://www.rescuetime.com/api/oauth/",
"headers": {
"Accept": "application/json",
"Authorization": "Bearer ${auth.accessToken}",
"User-Agent": "Pizzly"
}
}
}

0 comments on commit 82bcc50

Please sign in to comment.