Tesla Api - 404 error trying to use refresh_token The 2019 Stack Overflow Developer Survey Results Are InAuthenticating to Calendar with Python gdata and oAuth 2fatal error: Python.h: No such file or directoryLinkedin OAuth get Access token via curl but not via urllib pythonUnable to authorise with Pinterest API OauthGoogle Python API Client Refresh access_token using refresh_tokenAPI access to trading platform using PythonMaking a request to Dynamics CRM Web APIHow to update a pull request through Github APIREST API POST request causing AttributeError: 'bytes' object has no attribute 'items'Spotify API 'error': 'invalid_client' Authorization Code Flow [400]
How to display lines in a file like ls displays files in a directory?
If I can cast sorceries at instant speed, can I use sorcery-speed activated abilities at instant speed?
APIPA and LAN Broadcast Domain
writing variables above the numbers in tikz picture
A word that means fill it to the required quantity
Currents/voltages graph for an electrical circuit
How to charge AirPods to keep battery healthy?
Inverse Relationship Between Precision and Recall
How do you keep chess fun when your opponent constantly beats you?
Match Roman Numerals
What is this sharp, curved notch on my knife for?
Pokemon Turn Based battle (Python)
"as much details as you can remember"
Accepted by European university, rejected by all American ones I applied to? Possible reasons?
Get name of standard action overriden in Visualforce contorller
Ubuntu Server install with full GUI
How do I free up internal storage if I don't have any apps downloaded?
How to support a colleague who finds meetings extremely tiring?
Did Scotland spend $250,000 for the slogan "Welcome to Scotland"?
Is it safe to harvest rainwater that fell on solar panels?
Can we generate random numbers using irrational numbers like π and e?
Why isn't the circumferential light around the M87 black hole's event horizon symmetric?
Worn-tile Scrabble
How do PCB vias affect signal quality?
Tesla Api - 404 error trying to use refresh_token
The 2019 Stack Overflow Developer Survey Results Are InAuthenticating to Calendar with Python gdata and oAuth 2fatal error: Python.h: No such file or directoryLinkedin OAuth get Access token via curl but not via urllib pythonUnable to authorise with Pinterest API OauthGoogle Python API Client Refresh access_token using refresh_tokenAPI access to trading platform using PythonMaking a request to Dynamics CRM Web APIHow to update a pull request through Github APIREST API POST request causing AttributeError: 'bytes' object has no attribute 'items'Spotify API 'error': 'invalid_client' Authorization Code Flow [400]
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I've been scratching my head over this bug for the last hour and was wondering if anyone could help me out. Here is the link to the tesla api: https://tesla-api.timdorr.com/api-basics/authentication
I've been trying to make a POST
request to get a new access_token
like such
data = urlencode(
"grant_type": "refresh_token", "client_id": CLIENT_ID,
"client_secret": CLIENT_SECRET, "refresh_token": refresh_token
).encode("utf-8")
request = Request("https://owner-api.teslamotors.com/oath/token",
data=data)
response = urlopen(request).read()
However, this keeps returning me a 404 error but I would like to think that I am making the POST request correctly. Can someone point out what I'm missing here? I'm confident that all my variables (CLIENT_ID
, CLIENT_SECRET
, etc) are correct too
Would appreciate any help :-)
Thanks!
python tesla
add a comment |
I've been scratching my head over this bug for the last hour and was wondering if anyone could help me out. Here is the link to the tesla api: https://tesla-api.timdorr.com/api-basics/authentication
I've been trying to make a POST
request to get a new access_token
like such
data = urlencode(
"grant_type": "refresh_token", "client_id": CLIENT_ID,
"client_secret": CLIENT_SECRET, "refresh_token": refresh_token
).encode("utf-8")
request = Request("https://owner-api.teslamotors.com/oath/token",
data=data)
response = urlopen(request).read()
However, this keeps returning me a 404 error but I would like to think that I am making the POST request correctly. Can someone point out what I'm missing here? I'm confident that all my variables (CLIENT_ID
, CLIENT_SECRET
, etc) are correct too
Would appreciate any help :-)
Thanks!
python tesla
1
oath
->oauth
– Klaus D.
Mar 22 at 4:40
@KlausD. oh my.... thank you so much! I can't believe I didn't catch this...Legit stuck on this for an hour and was completely baffled. Thanks for pointing it out :-)
– Tim
Mar 22 at 4:41
404 means bad URL.
– Klaus D.
Mar 22 at 4:57
add a comment |
I've been scratching my head over this bug for the last hour and was wondering if anyone could help me out. Here is the link to the tesla api: https://tesla-api.timdorr.com/api-basics/authentication
I've been trying to make a POST
request to get a new access_token
like such
data = urlencode(
"grant_type": "refresh_token", "client_id": CLIENT_ID,
"client_secret": CLIENT_SECRET, "refresh_token": refresh_token
).encode("utf-8")
request = Request("https://owner-api.teslamotors.com/oath/token",
data=data)
response = urlopen(request).read()
However, this keeps returning me a 404 error but I would like to think that I am making the POST request correctly. Can someone point out what I'm missing here? I'm confident that all my variables (CLIENT_ID
, CLIENT_SECRET
, etc) are correct too
Would appreciate any help :-)
Thanks!
python tesla
I've been scratching my head over this bug for the last hour and was wondering if anyone could help me out. Here is the link to the tesla api: https://tesla-api.timdorr.com/api-basics/authentication
I've been trying to make a POST
request to get a new access_token
like such
data = urlencode(
"grant_type": "refresh_token", "client_id": CLIENT_ID,
"client_secret": CLIENT_SECRET, "refresh_token": refresh_token
).encode("utf-8")
request = Request("https://owner-api.teslamotors.com/oath/token",
data=data)
response = urlopen(request).read()
However, this keeps returning me a 404 error but I would like to think that I am making the POST request correctly. Can someone point out what I'm missing here? I'm confident that all my variables (CLIENT_ID
, CLIENT_SECRET
, etc) are correct too
Would appreciate any help :-)
Thanks!
python tesla
python tesla
asked Mar 22 at 4:31
TimTim
3141216
3141216
1
oath
->oauth
– Klaus D.
Mar 22 at 4:40
@KlausD. oh my.... thank you so much! I can't believe I didn't catch this...Legit stuck on this for an hour and was completely baffled. Thanks for pointing it out :-)
– Tim
Mar 22 at 4:41
404 means bad URL.
– Klaus D.
Mar 22 at 4:57
add a comment |
1
oath
->oauth
– Klaus D.
Mar 22 at 4:40
@KlausD. oh my.... thank you so much! I can't believe I didn't catch this...Legit stuck on this for an hour and was completely baffled. Thanks for pointing it out :-)
– Tim
Mar 22 at 4:41
404 means bad URL.
– Klaus D.
Mar 22 at 4:57
1
1
oath
-> oauth
– Klaus D.
Mar 22 at 4:40
oath
-> oauth
– Klaus D.
Mar 22 at 4:40
@KlausD. oh my.... thank you so much! I can't believe I didn't catch this...Legit stuck on this for an hour and was completely baffled. Thanks for pointing it out :-)
– Tim
Mar 22 at 4:41
@KlausD. oh my.... thank you so much! I can't believe I didn't catch this...Legit stuck on this for an hour and was completely baffled. Thanks for pointing it out :-)
– Tim
Mar 22 at 4:41
404 means bad URL.
– Klaus D.
Mar 22 at 4:57
404 means bad URL.
– Klaus D.
Mar 22 at 4:57
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55292954%2ftesla-api-404-error-trying-to-use-refresh-token%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55292954%2ftesla-api-404-error-trying-to-use-refresh-token%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
oath
->oauth
– Klaus D.
Mar 22 at 4:40
@KlausD. oh my.... thank you so much! I can't believe I didn't catch this...Legit stuck on this for an hour and was completely baffled. Thanks for pointing it out :-)
– Tim
Mar 22 at 4:41
404 means bad URL.
– Klaus D.
Mar 22 at 4:57