I\'ve been trying to plug into the Toggl API for a project, and their examples are all using CURL. I\'m trying to use the C# wrapper which causes a bad request when trying t
As explained to me in another post, you can pass the api token to the user property if you are using HttpWebRequest:
request.Headers.Add("Authorization", "Basic " + Convert.ToBase64String(System.Text.ASCIIEncoding.ASCII.GetBytes($"my-secret-toggl-api-token:api_token")));