Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typos and few corrections in readme #100

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Integration steps can be found below:

The client takes in parameters in the following format:

1. Associative array
1. Associative array.
2. Path to the JSON file containing configuration information.

## Installing using Composer
Expand Down Expand Up @@ -132,7 +132,7 @@ $config = array(

$client = new Client($config);

// Also you can set the sandbox variable in the config() array of the Client class by
// Also you can set the sandbox variable in the config array of the Client class by

$client->setSandbox(true);
```
Expand Down Expand Up @@ -298,7 +298,7 @@ See the [API Response](https://github.com/amzn/amazon-pay-sdk-php#api-response)

### IPN Handling

1. To receive IPN's successfully you will need an valid SSL on your domain.
1. To receive IPN's successfully you will need a valid SSL on your domain.
2. You can set up your Notification endpoints by either (a) using the Seller Central Integration Settings page Settings tab, or (b) by using the SetMerchantNotificationConfiguration API call.
3. IpnHandler.php class handles verification of the source and the data of the IPN

Expand Down Expand Up @@ -421,7 +421,7 @@ $response = $client->charge($requestParameters);
See the [API Response](https://github.com/amzn/amazon-pay-sdk-php#api-response) section for information on parsing the API response.

#### Obtain profile information (getUserInfo method)
1. obtains the user's profile information from Amazon using the access token returned by the Button widget.
1. obtain the user's profile information from Amazon using the access token returned by the Button widget.
2. An access token is granted by the authorization server when a user logs in to a site.
3. An access token is specific to a client, a user, and an access scope. A client must use an access token to retrieve customer profile data.

Expand Down