Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated base URL for toggl API requests #160

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ connection: {
type: "basic_auth",

# Toggl API expect the token to be sent as user name and the string 'api_token' as the password
# curl -u "{your api_token}:api_token" "https://www.toggl.com/api/v8/me"
# curl -u "{your api_token}:api_token" "https://api.track.toggl.com/api/v8/me"
credentials: lambda do |connection|
user(connection["api_token"])
password("api_token")
Expand Down
14 changes: 7 additions & 7 deletions custom_connectors/basic_auth/toggl_connector.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
type: 'basic_auth',

# Toggl API expect the token to be sent as user name and the string 'api_token' as the password
# curl -u "{your api_token}:api_token" "https://www.toggl.com/api/v8/me"
# curl -u "{your api_token}:api_token" "https://api.track.toggl.com/api/v8/me"
credentials: ->(connection) {
user(connection['api_token'])
password('api_token')
Expand All @@ -24,7 +24,7 @@
},

test: ->(connection) {
get("https://www.toggl.com/api/v8/me")
get("https://api.track.toggl.com/api/v8/me")
},

object_definitions: {
Expand Down Expand Up @@ -58,7 +58,7 @@
start_time = input['date'].to_time.beginning_of_day.utc.iso8601
end_time = (input['date'].to_time + 1.days).beginning_of_day.utc.iso8601

entries = get("https://www.toggl.com/api/v8/time_entries").
entries = get("https://api.track.toggl.com/api/v8/time_entries").
params(start_date: start_time,
end_date: end_time)

Expand All @@ -81,7 +81,7 @@
},

execute: ->(connection, input) {
project = get("https://www.toggl.com/api/v8/projects/#{input['id']}")['data']
project = get("https://api.track.toggl.com/api/v8/projects/#{input['id']}")['data']
{
'project_name': project['name'],
'client_id': project['cid']
Expand All @@ -104,7 +104,7 @@

execute: ->(connection, input) {
{
'name': get("https://www.toggl.com/api/v8/clients/#{input['id']}")['data']['name']
'name': get("https://api.track.toggl.com/api/v8/clients/#{input['id']}")['data']['name']
}
},

Expand All @@ -128,9 +128,9 @@
start_time = input['date'].to_time.beginning_of_day.utc.iso8601
end_time = (input['date'].to_time + 1.days).beginning_of_day.utc.iso8601

user = input['user'] == 'me' ? get("https://www.toggl.com/api/v8/me")['data']['fullname'] : input['user']
user = input['user'] == 'me' ? get("https://api.track.toggl.com/api/v8/me")['data']['fullname'] : input['user']

report = get("https://toggl.com/reports/api/v2/summary").
report = get("https://api.track.toggl.com/reports/api/v2/summary").
params(since: start_time,
until: end_time,
user_agent: user,
Expand Down