Skip to content

Commit

Permalink
Updating docs links
Browse files Browse the repository at this point in the history
  • Loading branch information
csmb committed Aug 3, 2015
1 parent b361a2f commit 4ea8f93
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -4,7 +4,7 @@

The Recurly PHP Client library is an open source library to interact with
Recurly's subscription management from your PHP website. The library interacts
with Recurly's [REST API](http://support.recurly.com/faqs/api).
with Recurly's [REST API](https://dev.recurly.com/docs/getting-started).

**Note:** This version uses Recurly API v2. There are substantial differences
between this version of the client library and versions before _0.5.0_. Please
Expand Down Expand Up @@ -81,7 +81,7 @@ Recurly_Client::$apiKey = '012345678901234567890123456789ab';

## API Documentation

Please see the [Recurly API](http://docs.recurly.com/api) for more information.
Please see the [Recurly API](https://dev.recurly.com/docs/getting-started) for more information.

## Unit tests

Expand Down
2 changes: 1 addition & 1 deletion lib/recurly/client.php
@@ -1,7 +1,7 @@
<?php

/**
* Recurly_Client provides methods for interacting with the {@link http://docs.recurly.com/api Recurly} API.
* Recurly_Client provides methods for interacting with the {@link https://dev.recurly.com/docs/getting-started Recurly} API.
*
* @category Recurly
* @package Recurly_Client_PHP
Expand Down
2 changes: 1 addition & 1 deletion lib/recurly/response.php
Expand Up @@ -57,7 +57,7 @@ public function assertValidResponse()
// Handled in assertSuccessResponse()
return;
case 429:
throw new Recurly_ApiRateLimitError('You have made too many API requests in the last 5 minutes. Future API requests may be ignored until your rate limit resets in 5 minutes. Please visit: https://docs.recurly.com/api/basics/rate-limits');
throw new Recurly_ApiRateLimitError('You have made too many API requests in the last 5 minutes. Future API requests may be ignored until your rate limit resets in 5 minutes. Please visit: https://dev.recurly.com/docs/rate-limits');
case 500:
$message = (is_null($error) ? 'An error occurred while connecting to Recurly' :
'An error occurred while connecting to Recurly: ' . $error->description);
Expand Down

0 comments on commit 4ea8f93

Please sign in to comment.