Godaddy API authorization issue
Asked Answered
V

3

11

I am trying to develop client application for GoDaddy based on their API that they provide here https://developer.godaddy.com And I have a problem with simple example, I am trying to use the next PHP code to check if domain available:

use GuzzleHttp\Client;
try {
    $client = new Client([
        'base_uri' => 'https://api.godaddy.com',
    ]);

    $responce = $client->get(
        '/v1/domains/available?domain=example.guru',
        [
            'headers' => [
                'Authorization' => "sso-key $myKey:$mySecret",
                'X-Shopper-Id' => "$myID",
                'Accept' => 'application/json',
            ]
        ]
    );
    echo $responce->getBody();
} catch (Exception $e) {
    echo $e->getMessage();
}

And all the time I get error: "Client error: 401". Same problem I have with using cURL library. I didn't find any online support. I need help with it, can someone explain how I should authorize at their API service? Maybe I need to send any other http headers or additional params?

Virginavirginal answered 29/8, 2015 at 10:17 Comment(2)
And you are sure the variables $myKey and $mySecret are defined and correct?Sobriety
@CharlotteDunois of courseVirginavirginal
L
13

Are the key and secret you're using for production? When I go through the process, by default it creates a TEST key/secret, which I think are meant to go against https://api.ote-godaddy.com

If you are using production keys, try doing a manual Curl request from the command like; something like:

curl -H 'Authorization: sso-key {KEY}:{SECRET}' -H 'Content-Type: application/json' https://api.godaddy.com/v1/domains/available?domain=example.guru'

Let us know how it works out!

Lone answered 29/8, 2015 at 19:46 Comment(4)
Oh! I was using TEST key/secret which I've got by default. Yes, you're right, I've changed url to api.ote-godaddy.com and now it works well. Thank you for helpVirginavirginal
How can i install oAuth in GoDaddy VPS server? @BrainTinatinamou
@Rathinam this issue is covering the now discontinued GoDaddy Cloud Servers product. With a VPS, all of that configuration is up to you (and I'm not too familiar with it unfortunately) :(Lone
Thank you, I installed oauth using Google.Tinatinamou
V
6

The problem was that I was using TEST {KEY}:{SECRET} and set wrong URL.

For the test {KEY}:{SECRET} URL has to be: https://api.ote-godaddy.com.

Also the method for checking domain availability (/v1/domains/available) doesn't need parameter 'X-Shopper-Id' in header. It works well without it. With parameter X-Shopper-Id request returns error "NOT_FOUND: The specified shopperId could not be found"(but it's other problem, maybe I didn't activate some option)

So if to take into account all changes, the working code for checking domain availability with test key/secret should be like this:

use GuzzleHttp\Client;
try {
    $client = new Client([
        'base_uri' => 'https://api.ote-godaddy.com'
    ]);

    $responce = $client->get(
        '/v1/domains/available?domain=example.guru',
        [
            'headers' => [
                'Authorization' => "sso-key $myKey:$mySecret",
                'Accept' => 'application/json',
            ]
        ]
    );
    echo $responce->getBody();
} catch (Exception $e) {
    echo $e->getMessage();
}
Virginavirginal answered 30/8, 2015 at 13:5 Comment(2)
Awesome, thanks for posting your code snippets! Really glad that you got it sorted out :)Lone
Is any sandbox available for godaddy where i can test my api calls using test api key.Godaddy providing test api key but thats not working for me as well whenever i tried to purchase domain using api call.Ayer
R
0

I am using php and curl.

$domain = "jaisinghverma.com";<br>
$apiURL = 'https://api.ote-godaddy.com/v1/domains/available?
domain='.$domain.'&checkType=FULL&forTransfer=false';<br>
$headers = array(
  'Accept: application/json',
  'Authorization: sso-key ?????????',
);<br>
$ch = curl_init();<br>
curl_setopt($ch, CURLOPT_URL, $apiURL);<br>
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);<br>
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);<br>
$server_output = curl_exec ($ch);<br>
curl_close ($ch);<br>
print_r(json_decode($server_output));

above code is working fine for me.

Rash answered 1/12, 2017 at 12:27 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.