dnsimple 2.2.0 → 3.0.0.pre.beta1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.ruby-version +1 -1
- data/.travis.yml +3 -1
- data/CHANGELOG.md +13 -2
- data/CONTRIBUTING.md +35 -0
- data/Gemfile +2 -0
- data/LICENSE.txt +1 -1
- data/README.md +30 -82
- data/dnsimple.gemspec +2 -1
- data/lib/dnsimple.rb +0 -2
- data/lib/dnsimple/client.rb +64 -64
- data/lib/dnsimple/client/clients.rb +82 -58
- data/lib/dnsimple/client/contacts.rb +74 -37
- data/lib/dnsimple/client/domains.rb +82 -28
- data/lib/dnsimple/client/domains_email_forwards.rb +107 -0
- data/lib/dnsimple/client/identity.rb +38 -0
- data/lib/dnsimple/client/oauth.rb +42 -0
- data/lib/dnsimple/client/registrar.rb +64 -72
- data/lib/dnsimple/client/registrar_auto_renewal.rb +41 -0
- data/lib/dnsimple/client/registrar_whois_privacy.rb +74 -0
- data/lib/dnsimple/client/tlds.rb +88 -0
- data/lib/dnsimple/client/webhooks.rb +82 -0
- data/lib/dnsimple/client/zones.rb +68 -0
- data/lib/dnsimple/client/zones_records.rb +127 -0
- data/lib/dnsimple/default.rb +10 -17
- data/lib/dnsimple/error.rb +5 -8
- data/lib/dnsimple/extra.rb +1 -1
- data/lib/dnsimple/response.rb +80 -0
- data/lib/dnsimple/struct.rb +13 -14
- data/lib/dnsimple/struct/account.rb +13 -0
- data/lib/dnsimple/struct/contact.rb +6 -3
- data/lib/dnsimple/struct/domain.rb +10 -10
- data/lib/dnsimple/struct/domain_check.rb +16 -0
- data/lib/dnsimple/struct/email_forward.rb +11 -1
- data/lib/dnsimple/struct/oauth_token.rb +19 -0
- data/lib/dnsimple/struct/record.rb +25 -7
- data/lib/dnsimple/struct/tld.rb +22 -0
- data/lib/dnsimple/struct/user.rb +3 -7
- data/lib/dnsimple/struct/webhook.rb +13 -0
- data/lib/dnsimple/struct/whois_privacy.rb +8 -5
- data/lib/dnsimple/struct/zone.rb +25 -0
- data/lib/dnsimple/version.rb +1 -1
- data/spec/dnsimple/client/client_service_spec.rb +37 -0
- data/spec/dnsimple/client/contacts_spec.rb +108 -78
- data/spec/dnsimple/client/domains_email_forwards_spec.rb +190 -0
- data/spec/dnsimple/client/domains_spec.rb +121 -58
- data/spec/dnsimple/client/identity_spec.rb +56 -0
- data/spec/dnsimple/client/oauth_spec.rb +48 -0
- data/spec/dnsimple/client/registrar_auto_renewal_spec.rb +80 -0
- data/spec/dnsimple/client/registrar_spec.rb +109 -122
- data/spec/dnsimple/client/registrar_whois_privacy_spec.rb +119 -0
- data/spec/dnsimple/client/tlds_spec.rb +139 -0
- data/spec/dnsimple/client/webhooks_spec.rb +142 -0
- data/spec/dnsimple/client/zones_records_spec.rb +277 -0
- data/spec/dnsimple/client/zones_spec.rb +109 -0
- data/spec/dnsimple/client_spec.rb +34 -46
- data/spec/dnsimple/extra_spec.rb +22 -0
- data/spec/{files → fixtures.http}/badgateway.http +14 -14
- data/spec/fixtures.http/checkDomain/success.http +17 -0
- data/spec/fixtures.http/createContact/created.http +17 -0
- data/spec/fixtures.http/createDomain/created.http +16 -0
- data/spec/fixtures.http/createEmailForward/created.http +17 -0
- data/spec/fixtures.http/createWebhook/created.http +17 -0
- data/spec/fixtures.http/createZoneRecord/created.http +17 -0
- data/spec/fixtures.http/deleteContact/success.http +13 -0
- data/spec/fixtures.http/deleteDomain/success.http +13 -0
- data/spec/fixtures.http/deleteEmailForward/success.http +12 -0
- data/spec/fixtures.http/deleteWebhook/success.http +13 -0
- data/spec/fixtures.http/deleteZoneRecord/success.http +13 -0
- data/spec/fixtures.http/disableAutoRenewal/success.http +12 -0
- data/spec/fixtures.http/disableWhoisPrivacy/success.http +17 -0
- data/spec/fixtures.http/enableAutoRenewal/success.http +12 -0
- data/spec/fixtures.http/enableWhoisPrivacy/created.http +17 -0
- data/spec/fixtures.http/enableWhoisPrivacy/success.http +17 -0
- data/spec/fixtures.http/getContact/success.http +17 -0
- data/spec/fixtures.http/getDomain/success.http +16 -0
- data/spec/fixtures.http/getEmailForward/success.http +17 -0
- data/spec/fixtures.http/getTld/success.http +17 -0
- data/spec/fixtures.http/getTldExtendedAttributes/success-noattributes.http +17 -0
- data/spec/fixtures.http/getTldExtendedAttributes/success.http +17 -0
- data/spec/fixtures.http/getWebhook/success.http +17 -0
- data/spec/fixtures.http/getWhoisPrivacy/success.http +17 -0
- data/spec/fixtures.http/getZone/success.http +17 -0
- data/spec/fixtures.http/getZoneRecord/success.http +17 -0
- data/spec/fixtures.http/listContacts/success.http +17 -0
- data/spec/fixtures.http/listDomains/success.http +16 -0
- data/spec/fixtures.http/listEmailForwards/success.http +17 -0
- data/spec/fixtures.http/listTlds/success.http +17 -0
- data/spec/fixtures.http/listWebhooks/success.http +17 -0
- data/spec/fixtures.http/listZoneRecords/success.http +17 -0
- data/spec/fixtures.http/listZones/success.http +17 -0
- data/spec/fixtures.http/notfound-contact.http +12 -0
- data/spec/fixtures.http/notfound-domain.http +12 -0
- data/spec/fixtures.http/notfound-emailforward.http +12 -0
- data/spec/fixtures.http/notfound-record.http +12 -0
- data/spec/fixtures.http/notfound-webhook.http +12 -0
- data/spec/fixtures.http/notfound-zone.http +12 -0
- data/spec/fixtures.http/oauthAccessToken/success.http +17 -0
- data/spec/fixtures.http/pages-1of3.http +16 -0
- data/spec/fixtures.http/pages-2of3.http +16 -0
- data/spec/fixtures.http/pages-3of3.http +16 -0
- data/spec/fixtures.http/registerDomain/success.http +17 -0
- data/spec/fixtures.http/renewDomain/error-tooearly.http +15 -0
- data/spec/fixtures.http/renewDomain/success.http +17 -0
- data/spec/fixtures.http/resetDomainToken/success.http +17 -0
- data/spec/fixtures.http/response.http +16 -0
- data/spec/fixtures.http/transferDomain/error-indnsimple.http +15 -0
- data/spec/fixtures.http/transferDomain/error-missing-authcode.http +15 -0
- data/spec/fixtures.http/transferDomain/success.http +17 -0
- data/spec/fixtures.http/transferDomainOut/success.http +13 -0
- data/spec/fixtures.http/updateContact/success.http +17 -0
- data/spec/fixtures.http/updateZoneRecord/success.http +17 -0
- data/spec/fixtures.http/whoami/success.http +16 -0
- data/spec/fixtures.http/whoami/success_account.http +16 -0
- data/spec/fixtures.http/whoami/success_user.http +16 -0
- data/spec/spec_helper.rb +0 -6
- data/spec/support/helpers.rb +4 -4
- metadata +161 -238
- data/lib/dnsimple/client/certificates.rb +0 -100
- data/lib/dnsimple/client/domains_autorenewal.rb +0 -35
- data/lib/dnsimple/client/domains_forwards.rb +0 -71
- data/lib/dnsimple/client/domains_privacy.rb +0 -35
- data/lib/dnsimple/client/domains_records.rb +0 -90
- data/lib/dnsimple/client/domains_sharing.rb +0 -54
- data/lib/dnsimple/client/domains_zones.rb +0 -22
- data/lib/dnsimple/client/name_servers.rb +0 -71
- data/lib/dnsimple/client/services.rb +0 -37
- data/lib/dnsimple/client/services_domains.rb +0 -68
- data/lib/dnsimple/client/templates.rb +0 -88
- data/lib/dnsimple/client/templates_domains.rb +0 -23
- data/lib/dnsimple/client/templates_records.rb +0 -88
- data/lib/dnsimple/client/users.rb +0 -39
- data/lib/dnsimple/client/vanity_name_servers.rb +0 -39
- data/lib/dnsimple/compatibility.rb +0 -46
- data/lib/dnsimple/struct/certificate.rb +0 -56
- data/lib/dnsimple/struct/membership.rb +0 -22
- data/lib/dnsimple/struct/price.rb +0 -16
- data/lib/dnsimple/struct/service.rb +0 -19
- data/lib/dnsimple/struct/template.rb +0 -19
- data/lib/dnsimple/struct/template_record.rb +0 -24
- data/lib/dnsimple/struct/transfer_order.rb +0 -10
- data/spec/dnsimple/client/certificates_spec.rb +0 -196
- data/spec/dnsimple/client/domains_autorenewals_spec.rb +0 -72
- data/spec/dnsimple/client/domains_forwards_spec.rb +0 -146
- data/spec/dnsimple/client/domains_privacy_spec.rb +0 -74
- data/spec/dnsimple/client/domains_records_spec.rb +0 -191
- data/spec/dnsimple/client/domains_sharing_spec.rb +0 -109
- data/spec/dnsimple/client/domains_zones_spec.rb +0 -40
- data/spec/dnsimple/client/name_servers_spec.rb +0 -131
- data/spec/dnsimple/client/services_domains_spec.rb +0 -101
- data/spec/dnsimple/client/services_spec.rb +0 -69
- data/spec/dnsimple/client/templates_domains_spec.rb +0 -38
- data/spec/dnsimple/client/templates_records_spec.rb +0 -180
- data/spec/dnsimple/client/templates_spec.rb +0 -166
- data/spec/dnsimple/client/users_spec.rb +0 -70
- data/spec/dnsimple/client/vanity_name_servers_spec.rb +0 -61
- data/spec/dnsimple/compatibility_spec.rb +0 -57
- data/spec/files/2fa/error-badtoken.http +0 -22
- data/spec/files/2fa/error-required.http +0 -23
- data/spec/files/2fa/exchange-token.http +0 -22
- data/spec/files/certificates/configure/success.http +0 -19
- data/spec/files/certificates/get/success.http +0 -19
- data/spec/files/certificates/list/success.http +0 -19
- data/spec/files/certificates/notfound.http +0 -19
- data/spec/files/certificates/purchase/success.http +0 -19
- data/spec/files/certificates/submit/success.http +0 -19
- data/spec/files/contacts/contact/success.http +0 -19
- data/spec/files/contacts/contacts/success.http +0 -23
- data/spec/files/contacts/create_contact/badrequest-missingcontact.http +0 -19
- data/spec/files/contacts/create_contact/badrequest-validationerror.http +0 -19
- data/spec/files/contacts/create_contact/created.http +0 -22
- data/spec/files/contacts/delete_contact/success-204.http +0 -18
- data/spec/files/contacts/delete_contact/success.http +0 -19
- data/spec/files/contacts/notfound-contact.http +0 -19
- data/spec/files/contacts/update_contact/success.http +0 -21
- data/spec/files/domains/create_domain/created.http +0 -21
- data/spec/files/domains/create_forward/created.http +0 -22
- data/spec/files/domains/create_membership/success.http +0 -21
- data/spec/files/domains/create_record/created.http +0 -21
- data/spec/files/domains/delete_domain/success-204.http +0 -18
- data/spec/files/domains/delete_domain/success.http +0 -19
- data/spec/files/domains/delete_forward/success.http +0 -17
- data/spec/files/domains/delete_membership/success.http +0 -17
- data/spec/files/domains/delete_record/success-204.http +0 -18
- data/spec/files/domains/delete_record/success.http +0 -19
- data/spec/files/domains/disable_auto_renewal/success.http +0 -21
- data/spec/files/domains/disable_whois_privacy/success.http +0 -21
- data/spec/files/domains/domain/success.http +0 -21
- data/spec/files/domains/domains/success.http +0 -21
- data/spec/files/domains/enable_auto_renewal/success.http +0 -21
- data/spec/files/domains/enable_whois_privacy/success.http +0 -22
- data/spec/files/domains/forward/success.http +0 -21
- data/spec/files/domains/forwards/success.http +0 -21
- data/spec/files/domains/memberships/success.http +0 -21
- data/spec/files/domains/notfound-domain.http +0 -19
- data/spec/files/domains/notfound-forward.http +0 -19
- data/spec/files/domains/notfound-membership.http +0 -19
- data/spec/files/domains/record/success.http +0 -19
- data/spec/files/domains/records/success.http +0 -19
- data/spec/files/domains/update_record/success.http +0 -21
- data/spec/files/domains/zone/success.http +0 -21
- data/spec/files/nameservers/change/success.http +0 -23
- data/spec/files/nameservers/deregister/success.http +0 -17
- data/spec/files/nameservers/name_servers/success.http +0 -23
- data/spec/files/nameservers/notfound-domain.http +0 -19
- data/spec/files/nameservers/register/badrequest-valueerror.http +0 -19
- data/spec/files/nameservers/register/success.http +0 -21
- data/spec/files/nameservers/vanity_name_servers/disabled.http +0 -23
- data/spec/files/nameservers/vanity_name_servers/enabled.http +0 -23
- data/spec/files/registrar/check/available.http +0 -19
- data/spec/files/registrar/check/registered.http +0 -21
- data/spec/files/registrar/extended_attributes/success.http +0 -21
- data/spec/files/registrar/prices/success.http +0 -21
- data/spec/files/registrar/register/badrequest-missingdomain.http +0 -19
- data/spec/files/registrar/register/badrequest-missingregistrant.http +0 -19
- data/spec/files/registrar/register/success.http +0 -21
- data/spec/files/registrar/renew/badrequest-missingrenewal.http +0 -19
- data/spec/files/registrar/renew/badrequest-unable.http +0 -19
- data/spec/files/registrar/renew/success.http +0 -21
- data/spec/files/registrar/transfer/success.http +0 -21
- data/spec/files/services/applied/success.http +0 -21
- data/spec/files/services/apply/success.http +0 -21
- data/spec/files/services/available/success.http +0 -21
- data/spec/files/services/notfound-service.http +0 -19
- data/spec/files/services/service/success.http +0 -21
- data/spec/files/services/services/success.http +0 -21
- data/spec/files/services/unapply/success.http +0 -21
- data/spec/files/subscriptions/subscription/success.http +0 -21
- data/spec/files/templates/apply_template/success.http +0 -21
- data/spec/files/templates/create_template/created.http +0 -22
- data/spec/files/templates/delete_template/success-204.http +0 -21
- data/spec/files/templates/delete_template/success.http +0 -21
- data/spec/files/templates/notfound-template.http +0 -19
- data/spec/files/templates/template/success.http +0 -21
- data/spec/files/templates/templates/success.http +0 -21
- data/spec/files/templates/update_template/success.http +0 -21
- data/spec/files/templates_records/create_record/created.http +0 -22
- data/spec/files/templates_records/delete_record/success-204.http +0 -19
- data/spec/files/templates_records/delete_record/success.http +0 -21
- data/spec/files/templates_records/notfound-template-record.http +0 -19
- data/spec/files/templates_records/record/success.http +0 -21
- data/spec/files/templates_records/records/success.http +0 -21
- data/spec/files/templates_records/update_record/success.http +0 -21
- data/spec/files/users/user/success.http +0 -21
@@ -1,22 +0,0 @@
|
|
1
|
-
HTTP/1.1 201 Created
|
2
|
-
Server: nginx
|
3
|
-
Date: Mon, 22 Dec 2014 14:17:34 GMT
|
4
|
-
Content-Type: application/json; charset=utf-8
|
5
|
-
Transfer-Encoding: chunked
|
6
|
-
Connection: close
|
7
|
-
Status: 201 Created
|
8
|
-
Strict-Transport-Security: max-age=631138519
|
9
|
-
X-Frame-Options: SAMEORIGIN
|
10
|
-
X-XSS-Protection: 1
|
11
|
-
X-Content-Type-Options: nosniff
|
12
|
-
Access-Control-Allow-Origin: *
|
13
|
-
Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
|
14
|
-
Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
|
15
|
-
Location: /domains/example-1417880719.com/whois_privacy
|
16
|
-
ETag: "aa7e32e8efb9b3229cdc99ed786eea38"
|
17
|
-
Cache-Control: max-age=0, private, must-revalidate
|
18
|
-
X-Request-Id: 1659a34d-b523-4600-b47c-f7c794707036
|
19
|
-
X-Runtime: 0.999329
|
20
|
-
Strict-Transport-Security: max-age=315360000
|
21
|
-
|
22
|
-
{"whois_privacy":{"id":30,"domain_id":1744,"enabled":true,"expires_on":"2015-12-22"}}
|
@@ -1,21 +0,0 @@
|
|
1
|
-
HTTP/1.1 200 OK
|
2
|
-
Server: nginx
|
3
|
-
Date: Tue, 16 Dec 2014 12:56:40 GMT
|
4
|
-
Content-Type: application/json; charset=utf-8
|
5
|
-
Transfer-Encoding: chunked
|
6
|
-
Connection: close
|
7
|
-
Status: 200 OK
|
8
|
-
Strict-Transport-Security: max-age=631138519
|
9
|
-
X-Frame-Options: SAMEORIGIN
|
10
|
-
X-XSS-Protection: 1
|
11
|
-
X-Content-Type-Options: nosniff
|
12
|
-
Access-Control-Allow-Origin: *
|
13
|
-
Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
|
14
|
-
Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
|
15
|
-
ETag: "7670de32e65494845f00f86f07ffd905"
|
16
|
-
Cache-Control: max-age=0, private, must-revalidate
|
17
|
-
X-Request-Id: 15f8966b-ea0a-4ae8-931a-c8971fe697a6
|
18
|
-
X-Runtime: 0.044249
|
19
|
-
Strict-Transport-Security: max-age=315360000
|
20
|
-
|
21
|
-
{"email_forward":{"id":1,"domain_id":1111,"from":"sender@dnsimple-sandbox.com","to":"receiver@example.com","created_at":"2014-12-16T12:55:13.697Z","updated_at":"2014-12-16T12:55:13.697Z"}}
|
@@ -1,21 +0,0 @@
|
|
1
|
-
HTTP/1.1 200 OK
|
2
|
-
Server: nginx
|
3
|
-
Date: Tue, 16 Dec 2014 12:56:40 GMT
|
4
|
-
Content-Type: application/json; charset=utf-8
|
5
|
-
Transfer-Encoding: chunked
|
6
|
-
Connection: close
|
7
|
-
Status: 200 OK
|
8
|
-
Strict-Transport-Security: max-age=631138519
|
9
|
-
X-Frame-Options: SAMEORIGIN
|
10
|
-
X-XSS-Protection: 1
|
11
|
-
X-Content-Type-Options: nosniff
|
12
|
-
Access-Control-Allow-Origin: *
|
13
|
-
Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
|
14
|
-
Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
|
15
|
-
ETag: "7670de32e65494845f00f86f07ffd905"
|
16
|
-
Cache-Control: max-age=0, private, must-revalidate
|
17
|
-
X-Request-Id: 15f8966b-ea0a-4ae8-931a-c8971fe697a6
|
18
|
-
X-Runtime: 0.044249
|
19
|
-
Strict-Transport-Security: max-age=315360000
|
20
|
-
|
21
|
-
[{"email_forward":{"id":1,"domain_id":1111,"from":"sender@dnsimple-sandbox.com","to":"receiver@example.com","created_at":"2014-12-16T12:55:13.697Z","updated_at":"2014-12-16T12:55:13.697Z"}},{"email_forward":{"id":2,"domain_id":1111,"from":"sender@dnsimple-sandbox.com","to":"receiver@example.com","created_at":"2014-12-16T12:56:10.123Z","updated_at":"2014-12-16T12:56:10.123Z"}}]
|
@@ -1,21 +0,0 @@
|
|
1
|
-
HTTP/1.1 200 OK
|
2
|
-
Server: nginx
|
3
|
-
Date: Mon, 22 Dec 2014 15:45:22 GMT
|
4
|
-
Content-Type: application/json; charset=utf-8
|
5
|
-
Transfer-Encoding: chunked
|
6
|
-
Connection: close
|
7
|
-
Status: 200 OK
|
8
|
-
Strict-Transport-Security: max-age=631138519
|
9
|
-
X-Frame-Options: SAMEORIGIN
|
10
|
-
X-XSS-Protection: 1
|
11
|
-
X-Content-Type-Options: nosniff
|
12
|
-
Access-Control-Allow-Origin: *
|
13
|
-
Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
|
14
|
-
Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
|
15
|
-
ETag: "7dbe556effb089cdf9585c79812b75d5"
|
16
|
-
Cache-Control: max-age=0, private, must-revalidate
|
17
|
-
X-Request-Id: a3bd2361-6b4d-4f78-b250-08401c62092e
|
18
|
-
X-Runtime: 0.038244
|
19
|
-
Strict-Transport-Security: max-age=315360000
|
20
|
-
|
21
|
-
[{"membership":{"id":155,"domain_id":1744,"user_id":19,"created_at":"2014-12-22T15:41:06.505Z","updated_at":"2014-12-22T15:41:06.505Z"}},{"membership":{"id":156,"domain_id":1744,"user_id":2,"created_at":"2014-12-22T15:44:30.833Z","updated_at":"2014-12-22T15:44:30.833Z"}}]
|
@@ -1,19 +0,0 @@
|
|
1
|
-
HTTP/1.1 404 Not Found
|
2
|
-
Server: nginx
|
3
|
-
Date: Mon, 15 Dec 2014 20:55:36 GMT
|
4
|
-
Content-Type: application/json; charset=utf-8
|
5
|
-
Transfer-Encoding: chunked
|
6
|
-
Connection: keep-alive
|
7
|
-
Status: 404 Not Found
|
8
|
-
Strict-Transport-Security: max-age=631138519
|
9
|
-
X-Frame-Options: SAMEORIGIN
|
10
|
-
X-XSS-Protection: 1
|
11
|
-
X-Content-Type-Options: nosniff
|
12
|
-
Access-Control-Allow-Origin: *
|
13
|
-
Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
|
14
|
-
Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
|
15
|
-
Cache-Control: no-cache
|
16
|
-
X-Request-Id: 8d96a3b2-be45-4734-9a76-7dde39e0c94e
|
17
|
-
X-Runtime: 0.048082
|
18
|
-
|
19
|
-
{"message":"Domain `0' not found"}
|
@@ -1,19 +0,0 @@
|
|
1
|
-
HTTP/1.1 404 Not Found
|
2
|
-
Server: nginx
|
3
|
-
Date: Sun, 21 Dec 2014 19:27:29 GMT
|
4
|
-
Content-Type: application/json; charset=utf-8
|
5
|
-
Transfer-Encoding: chunked
|
6
|
-
Connection: close
|
7
|
-
Status: 404 Not Found
|
8
|
-
Strict-Transport-Security: max-age=631138519
|
9
|
-
X-Frame-Options: SAMEORIGIN
|
10
|
-
X-XSS-Protection: 1
|
11
|
-
X-Content-Type-Options: nosniff
|
12
|
-
Access-Control-Allow-Origin: *
|
13
|
-
Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
|
14
|
-
Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
|
15
|
-
Cache-Control: no-cache
|
16
|
-
X-Request-Id: 3b3e7db6-2a7e-40d7-976d-a990ac646a0b
|
17
|
-
X-Runtime: 0.020945
|
18
|
-
|
19
|
-
{"message":"Not Found"}
|
@@ -1,19 +0,0 @@
|
|
1
|
-
HTTP/1.1 404 Not Found
|
2
|
-
Server: nginx
|
3
|
-
Date: Mon, 22 Dec 2014 15:44:49 GMT
|
4
|
-
Content-Type: application/json; charset=utf-8
|
5
|
-
Transfer-Encoding: chunked
|
6
|
-
Connection: close
|
7
|
-
Status: 404 Not Found
|
8
|
-
Strict-Transport-Security: max-age=631138519
|
9
|
-
X-Frame-Options: SAMEORIGIN
|
10
|
-
X-XSS-Protection: 1
|
11
|
-
X-Content-Type-Options: nosniff
|
12
|
-
Access-Control-Allow-Origin: *
|
13
|
-
Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
|
14
|
-
Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
|
15
|
-
Cache-Control: no-cache
|
16
|
-
X-Request-Id: ed40bffb-0bfe-4602-ae1a-54464b213104
|
17
|
-
X-Runtime: 0.041833
|
18
|
-
|
19
|
-
{"message":"Couldn't find Membership with 'id'=158 [WHERE \"memberships\".\"domain_id\" = $1]"}
|
@@ -1,19 +0,0 @@
|
|
1
|
-
HTTP/1.1 200 OK
|
2
|
-
Server: nginx/1.4.4
|
3
|
-
Date: Tue, 14 Jan 2014 18:27:45 GMT
|
4
|
-
Content-Type: application/json; charset=utf-8
|
5
|
-
Transfer-Encoding: chunked
|
6
|
-
Connection: close
|
7
|
-
Status: 200 OK
|
8
|
-
X-Dnsimple-API-Version: 1.0.0
|
9
|
-
Access-Control-Allow-Origin: *
|
10
|
-
Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-Dnsimple-Token,X-Dnsimple-Domain-Token,X-CSRF-Token,x-requested-with
|
11
|
-
Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
|
12
|
-
X-UA-Compatible: IE=Edge,chrome=1
|
13
|
-
ETag: "67a9bfb8046724e79c7244d3c2458e65"
|
14
|
-
Cache-Control: max-age=0, private, must-revalidate
|
15
|
-
X-Request-Id: bb7cbc5a32833ea4d59c185b0ab67915
|
16
|
-
X-Runtime: 0.205329
|
17
|
-
Strict-Transport-Security: max-age=315360000
|
18
|
-
|
19
|
-
{"record":{"id":1495,"domain_id":6,"parent_id":null,"name":"www","content":"1.2.3.4","ttl":3600,"prio":null,"record_type":"A","system_record":null,"created_at":"2014-01-14T18:25:56Z","updated_at":"2014-01-14T18:26:04Z"}}
|
@@ -1,19 +0,0 @@
|
|
1
|
-
HTTP/1.1 200 OK
|
2
|
-
Server: nginx/1.4.4
|
3
|
-
Date: Tue, 14 Jan 2014 18:28:28 GMT
|
4
|
-
Content-Type: application/json; charset=utf-8
|
5
|
-
Transfer-Encoding: chunked
|
6
|
-
Connection: close
|
7
|
-
Status: 200 OK
|
8
|
-
X-Dnsimple-API-Version: 1.0.0
|
9
|
-
Access-Control-Allow-Origin: *
|
10
|
-
Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-Dnsimple-Token,X-Dnsimple-Domain-Token,X-CSRF-Token,x-requested-with
|
11
|
-
Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
|
12
|
-
X-UA-Compatible: IE=Edge,chrome=1
|
13
|
-
ETag: "daf44332ad1b854ea9aafb6d2345bf25"
|
14
|
-
Cache-Control: max-age=0, private, must-revalidate
|
15
|
-
X-Request-Id: 77bcd47eda1ce40c083364cbbdd845bf
|
16
|
-
X-Runtime: 0.047482
|
17
|
-
Strict-Transport-Security: max-age=315360000
|
18
|
-
|
19
|
-
[{"record":{"id":36,"domain_id":6,"parent_id":null,"name":"","content":"ns1.dnsimple.com admin.dnsimple.com 2013110801 86400 10800 604800 300","ttl":3600,"prio":null,"record_type":"SOA","system_record":true,"created_at":"2013-11-08T17:22:48Z","updated_at":"2013-11-08T17:22:58Z"}},{"record":{"id":37,"domain_id":6,"parent_id":null,"name":"","content":"ns1.dnsimple.com","ttl":3600,"prio":null,"record_type":"NS","system_record":true,"created_at":"2013-11-08T17:22:48Z","updated_at":"2013-11-08T17:22:58Z"}},{"record":{"id":38,"domain_id":6,"parent_id":null,"name":"","content":"ns2.dnsimple.com","ttl":3600,"prio":null,"record_type":"NS","system_record":true,"created_at":"2013-11-08T17:22:48Z","updated_at":"2013-11-08T17:22:59Z"}},{"record":{"id":39,"domain_id":6,"parent_id":null,"name":"","content":"ns3.dnsimple.com","ttl":3600,"prio":null,"record_type":"NS","system_record":true,"created_at":"2013-11-08T17:22:48Z","updated_at":"2013-11-08T17:23:00Z"}},{"record":{"id":40,"domain_id":6,"parent_id":null,"name":"","content":"ns4.dnsimple.com","ttl":3600,"prio":null,"record_type":"NS","system_record":true,"created_at":"2013-11-08T17:22:48Z","updated_at":"2013-11-08T17:23:00Z"}},{"record":{"id":1495,"domain_id":6,"parent_id":null,"name":"www","content":"1.2.3.4","ttl":3600,"prio":null,"record_type":"A","system_record":null,"created_at":"2014-01-14T18:25:56Z","updated_at":"2014-01-14T18:26:04Z"}},{"record":{"id":1496,"domain_id":6,"parent_id":null,"name":"","content":"1.2.3.5","ttl":3600,"prio":null,"record_type":"A","system_record":null,"created_at":"2014-01-14T18:27:04Z","updated_at":"2014-01-14T18:27:08Z"}}]
|
@@ -1,21 +0,0 @@
|
|
1
|
-
HTTP/1.1 200 OK
|
2
|
-
Server: nginx
|
3
|
-
Date: Sun, 14 Dec 2014 16:19:53 GMT
|
4
|
-
Content-Type: application/json; charset=utf-8
|
5
|
-
Transfer-Encoding: chunked
|
6
|
-
Connection: keep-alive
|
7
|
-
Status: 200 OK
|
8
|
-
Strict-Transport-Security: max-age=631138519
|
9
|
-
X-Frame-Options: SAMEORIGIN
|
10
|
-
X-XSS-Protection: 1
|
11
|
-
X-Content-Type-Options: nosniff
|
12
|
-
Access-Control-Allow-Origin: *
|
13
|
-
Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
|
14
|
-
Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
|
15
|
-
ETag: "45fbc90e793bde6153366ce961c88e73"
|
16
|
-
Cache-Control: max-age=0, private, must-revalidate
|
17
|
-
X-Request-Id: e44cd2a2-5010-42c6-bdec-8e12c339e8c9
|
18
|
-
X-Runtime: 0.036717
|
19
|
-
Strict-Transport-Security: max-age=315360000
|
20
|
-
|
21
|
-
{"record":{"id":3554751,"domain_id":41571,"parent_id":null,"name":"0001","content":"127.0.0.1","ttl":3600,"prio":null,"record_type":"A","system_record":null,"created_at":"2014-12-14T16:11:02.771Z","updated_at":"2014-12-14T16:11:02.771Z"}}
|
@@ -1,21 +0,0 @@
|
|
1
|
-
HTTP/1.1 200 OK
|
2
|
-
Server: nginx
|
3
|
-
Date: Mon, 22 Dec 2014 21:26:41 GMT
|
4
|
-
Content-Type: application/json; charset=utf-8
|
5
|
-
Transfer-Encoding: chunked
|
6
|
-
Connection: close
|
7
|
-
Status: 200 OK
|
8
|
-
Strict-Transport-Security: max-age=631138519
|
9
|
-
X-Frame-Options: SAMEORIGIN
|
10
|
-
X-XSS-Protection: 1
|
11
|
-
X-Content-Type-Options: nosniff
|
12
|
-
Access-Control-Allow-Origin: *
|
13
|
-
Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
|
14
|
-
Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
|
15
|
-
ETag: "962c0b7ec6f6b747b6a9e941dfa1b307"
|
16
|
-
Cache-Control: max-age=0, private, must-revalidate
|
17
|
-
X-Request-Id: 8fde3b40-b03c-4022-94d9-676c8be1dc8d
|
18
|
-
X-Runtime: 0.111639
|
19
|
-
Strict-Transport-Security: max-age=315360000
|
20
|
-
|
21
|
-
{"zone":"$ORIGIN example-1417880719.com.\n$TTL 1h\nexample-1417880719.com. 3600 IN SOA ns1.dnsimple.com. admin.dnsimple.com. 2014120601 86400 7200 604800 300\nexample-1417880719.com. 3600 IN NS ns2.dnsimple.com.\nexample-1417880719.com. 3600 IN NS ns1.dnsimple.com.\nexample-1417880719.com. 3600 IN NS ns3.dnsimple.com.\nexample-1417880719.com. 3600 IN NS ns4.dnsimple.com.\n"}
|
@@ -1,23 +0,0 @@
|
|
1
|
-
HTTP/1.1 200 OK
|
2
|
-
Server: nginx/1.4.7
|
3
|
-
Date: Tue, 01 Jul 2014 16:15:06 GMT
|
4
|
-
Content-Type: application/json; charset=utf-8
|
5
|
-
Transfer-Encoding: chunked
|
6
|
-
Connection: close
|
7
|
-
Status: 200 OK
|
8
|
-
Strict-Transport-Security: max-age=631138519
|
9
|
-
X-Frame-Options: SAMEORIGIN
|
10
|
-
X-XSS-Protection: 1
|
11
|
-
X-Content-Type-Options: nosniff
|
12
|
-
X-UA-Compatible: chrome=1
|
13
|
-
Access-Control-Allow-Origin: *
|
14
|
-
Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
|
15
|
-
Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
|
16
|
-
Content-Security-Policy: default-src 'self'; connect-src 'self'; font-src 'self' data: netdna.bootstrapcdn.com *.edgecastcdn.net; frame-src 'self'; img-src 'self' data: *.nr-data.net; media-src 'self'; object-src 'self'; script-src 'self' data: 'unsafe-inline' 'unsafe-eval' *.getdrip.com *.visualwebsiteoptimizer.com *.doubleclick.net *.pathful.com *.newrelic.com; style-src 'self' data: 'unsafe-inline' 'unsafe-eval' netdna.bootstrapcdn.com cloud.webtype.com cloud.typography.com;
|
17
|
-
ETag: "ab6304c604f60fabe9a0db5b5d2c7a27"
|
18
|
-
Cache-Control: max-age=0, private, must-revalidate
|
19
|
-
X-Request-Id: 03f71270-5c5b-44e1-9542-20a21d213222
|
20
|
-
X-Runtime: 3.279343
|
21
|
-
Strict-Transport-Security: max-age=315360000
|
22
|
-
|
23
|
-
["ns1.dnsimple.com","ns2.dnsimple.com"]
|
@@ -1,17 +0,0 @@
|
|
1
|
-
HTTP/1.1 204 No Content
|
2
|
-
Server: nginx
|
3
|
-
Date: Mon, 22 Dec 2014 18:12:42 GMT
|
4
|
-
Connection: close
|
5
|
-
Status: 204 No Content
|
6
|
-
Strict-Transport-Security: max-age=631138519
|
7
|
-
X-Frame-Options: SAMEORIGIN
|
8
|
-
X-XSS-Protection: 1
|
9
|
-
X-Content-Type-Options: nosniff
|
10
|
-
Access-Control-Allow-Origin: *
|
11
|
-
Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
|
12
|
-
Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
|
13
|
-
Cache-Control: no-cache
|
14
|
-
X-Request-Id: 9367be2f-4081-4137-bf91-e3223189c046
|
15
|
-
X-Runtime: 2.193079
|
16
|
-
Strict-Transport-Security: max-age=315360000
|
17
|
-
|
@@ -1,23 +0,0 @@
|
|
1
|
-
HTTP/1.1 200 OK
|
2
|
-
Server: nginx/1.4.7
|
3
|
-
Date: Tue, 01 Jul 2014 16:15:06 GMT
|
4
|
-
Content-Type: application/json; charset=utf-8
|
5
|
-
Transfer-Encoding: chunked
|
6
|
-
Connection: close
|
7
|
-
Status: 200 OK
|
8
|
-
Strict-Transport-Security: max-age=631138519
|
9
|
-
X-Frame-Options: SAMEORIGIN
|
10
|
-
X-XSS-Protection: 1
|
11
|
-
X-Content-Type-Options: nosniff
|
12
|
-
X-UA-Compatible: chrome=1
|
13
|
-
Access-Control-Allow-Origin: *
|
14
|
-
Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
|
15
|
-
Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
|
16
|
-
Content-Security-Policy: default-src 'self'; connect-src 'self'; font-src 'self' data: netdna.bootstrapcdn.com *.edgecastcdn.net; frame-src 'self'; img-src 'self' data: *.nr-data.net; media-src 'self'; object-src 'self'; script-src 'self' data: 'unsafe-inline' 'unsafe-eval' *.getdrip.com *.visualwebsiteoptimizer.com *.doubleclick.net *.pathful.com *.newrelic.com; style-src 'self' data: 'unsafe-inline' 'unsafe-eval' netdna.bootstrapcdn.com cloud.webtype.com cloud.typography.com;
|
17
|
-
ETag: "ab6304c604f60fabe9a0db5b5d2c7a27"
|
18
|
-
Cache-Control: max-age=0, private, must-revalidate
|
19
|
-
X-Request-Id: 03f71270-5c5b-44e1-9542-20a21d213222
|
20
|
-
X-Runtime: 3.279343
|
21
|
-
Strict-Transport-Security: max-age=315360000
|
22
|
-
|
23
|
-
["ns1.dnsimple.com","ns2.dnsimple.com"]
|
@@ -1,19 +0,0 @@
|
|
1
|
-
HTTP/1.1 404 Not Found
|
2
|
-
Server: nginx
|
3
|
-
Date: Fri, 19 Dec 2014 16:28:44 GMT
|
4
|
-
Content-Type: application/json; charset=utf-8
|
5
|
-
Transfer-Encoding: chunked
|
6
|
-
Connection: keep-alive
|
7
|
-
Status: 404 Not Found
|
8
|
-
Strict-Transport-Security: max-age=631138519
|
9
|
-
X-Frame-Options: SAMEORIGIN
|
10
|
-
X-XSS-Protection: 1
|
11
|
-
X-Content-Type-Options: nosniff
|
12
|
-
Access-Control-Allow-Origin: *
|
13
|
-
Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
|
14
|
-
Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
|
15
|
-
Cache-Control: no-cache
|
16
|
-
X-Request-Id: 17cbca69-d5a9-4de0-a9e0-e65770ba3bbb
|
17
|
-
X-Runtime: 0.076214
|
18
|
-
|
19
|
-
{"message":"Domain `0' not found"}
|
@@ -1,19 +0,0 @@
|
|
1
|
-
HTTP/1.1 400 Bad Request
|
2
|
-
Server: nginx
|
3
|
-
Date: Mon, 22 Dec 2014 18:09:38 GMT
|
4
|
-
Content-Type: application/json; charset=utf-8
|
5
|
-
Transfer-Encoding: chunked
|
6
|
-
Connection: close
|
7
|
-
Status: 400 Bad Request
|
8
|
-
Strict-Transport-Security: max-age=631138519
|
9
|
-
X-Frame-Options: SAMEORIGIN
|
10
|
-
X-XSS-Protection: 1
|
11
|
-
X-Content-Type-Options: nosniff
|
12
|
-
Access-Control-Allow-Origin: *
|
13
|
-
Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
|
14
|
-
Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
|
15
|
-
Cache-Control: no-cache
|
16
|
-
X-Request-Id: e21f150b-c341-48c3-a835-571dc6925cf9
|
17
|
-
X-Runtime: 2.408281
|
18
|
-
|
19
|
-
{"message":"Nameserver registration failed due to error: Parameter value policy error;IP address 127.0.0.1 is reserved"}
|
@@ -1,21 +0,0 @@
|
|
1
|
-
HTTP/1.1 201 Created
|
2
|
-
Server: nginx
|
3
|
-
Date: Mon, 22 Dec 2014 18:11:05 GMT
|
4
|
-
Content-Type: application/json; charset=utf-8
|
5
|
-
Transfer-Encoding: chunked
|
6
|
-
Connection: close
|
7
|
-
Status: 201 Created
|
8
|
-
Strict-Transport-Security: max-age=631138519
|
9
|
-
X-Frame-Options: SAMEORIGIN
|
10
|
-
X-XSS-Protection: 1
|
11
|
-
X-Content-Type-Options: nosniff
|
12
|
-
Access-Control-Allow-Origin: *
|
13
|
-
Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
|
14
|
-
Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
|
15
|
-
ETag: "0ebdecabeb62d0e8012597d52ad14e43"
|
16
|
-
Cache-Control: max-age=0, private, must-revalidate
|
17
|
-
X-Request-Id: 21d3a8e9-a6e6-4bc9-9f5a-92dfd6680f45
|
18
|
-
X-Runtime: 2.111712
|
19
|
-
Strict-Transport-Security: max-age=315360000
|
20
|
-
|
21
|
-
{"name":"ns1.example-1417880719.com","ip":"198.241.10.53"}
|
@@ -1,23 +0,0 @@
|
|
1
|
-
HTTP/1.1 200 OK
|
2
|
-
Date: Thu, 10 Dec 2015 20:14:05 GMT
|
3
|
-
Status: 200 OK
|
4
|
-
Connection: close
|
5
|
-
Access-Control-Allow-Origin: *
|
6
|
-
Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
|
7
|
-
Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
|
8
|
-
X-Frame-Options: SAMEORIGIN
|
9
|
-
X-XSS-Protection: 1
|
10
|
-
X-Content-Type-Options: nosniff
|
11
|
-
X-Download-Options: noopen
|
12
|
-
X-Permitted-Cross-Domain-Policies: none
|
13
|
-
Content-Type: application/json; charset=utf-8
|
14
|
-
Cache-Control: no-store, must-revalidate, private, max-age=0
|
15
|
-
X-Request-Id: 360532fd-7df5-4b9d-82d9-707495232709
|
16
|
-
X-Runtime: 0.351830
|
17
|
-
Set-Cookie: __profilin=p%3Dt; path=/
|
18
|
-
Set-Cookie: __profilin=p%3Dt; path=/
|
19
|
-
Set-Cookie: __profilin=p%3Dt; path=/
|
20
|
-
X-MiniProfiler-Ids: ["57flfc4miao2xtm0qi6t","3ob7yssth2tgz18xdhmh","lcx8amyy6mysu1rsv7d5","2qsm2f2xvqh224oqcnq9","qmhq7a2rqv5mtlz7e8bb"]
|
21
|
-
Transfer-Encoding: chunked
|
22
|
-
|
23
|
-
{"status":"disabled"}
|
@@ -1,23 +0,0 @@
|
|
1
|
-
HTTP/1.1 200 OK
|
2
|
-
Date: Thu, 10 Dec 2015 20:13:43 GMT
|
3
|
-
Status: 200 OK
|
4
|
-
Connection: close
|
5
|
-
Access-Control-Allow-Origin: *
|
6
|
-
Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
|
7
|
-
Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
|
8
|
-
X-Frame-Options: SAMEORIGIN
|
9
|
-
X-XSS-Protection: 1
|
10
|
-
X-Content-Type-Options: nosniff
|
11
|
-
X-Download-Options: noopen
|
12
|
-
X-Permitted-Cross-Domain-Policies: none
|
13
|
-
Content-Type: application/json; charset=utf-8
|
14
|
-
Cache-Control: no-store, must-revalidate, private, max-age=0
|
15
|
-
X-Request-Id: 765d10fb-5e1d-456a-8bb8-653712cd07ae
|
16
|
-
X-Runtime: 0.386822
|
17
|
-
Set-Cookie: __profilin=p%3Dt; path=/
|
18
|
-
Set-Cookie: __profilin=p%3Dt; path=/
|
19
|
-
Set-Cookie: __profilin=p%3Dt; path=/
|
20
|
-
X-MiniProfiler-Ids: ["qmhq7a2rqv5mtlz7e8bb","3ob7yssth2tgz18xdhmh","lcx8amyy6mysu1rsv7d5","2qsm2f2xvqh224oqcnq9"]
|
21
|
-
Transfer-Encoding: chunked
|
22
|
-
|
23
|
-
{"status":"enabled"}
|
@@ -1,19 +0,0 @@
|
|
1
|
-
HTTP/1.1 404 Not Found
|
2
|
-
Server: nginx
|
3
|
-
Date: Mon, 15 Dec 2014 21:36:56 GMT
|
4
|
-
Content-Type: application/json; charset=utf-8
|
5
|
-
Transfer-Encoding: chunked
|
6
|
-
Connection: keep-alive
|
7
|
-
Status: 404 Not Found
|
8
|
-
Strict-Transport-Security: max-age=631138519
|
9
|
-
X-Frame-Options: SAMEORIGIN
|
10
|
-
X-XSS-Protection: 1
|
11
|
-
X-Content-Type-Options: nosniff
|
12
|
-
Access-Control-Allow-Origin: *
|
13
|
-
Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
|
14
|
-
Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
|
15
|
-
Cache-Control: no-cache
|
16
|
-
X-Request-Id: d940e537-042a-439a-bd5a-806d1aafc2e0
|
17
|
-
X-Runtime: 0.649367
|
18
|
-
|
19
|
-
{"name":"example.com","status":"available","price":"14.0","currency":"USD","currency_symbol":"$","minimum_number_of_years":1}
|