8000 Fixed typo in README.rst by jamesbrink · Pull Request #1 · d3v-null/wp-api-python · GitHub
[go: up one dir, main page]

Skip to content

Fixed typo in README.rst #1

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

Merged
merged 1 commit into from
Jun 3, 2017
Merged
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
Fixed typo in README.rst
Added missing comma in example snippet for creating wordpress
API object.
  • Loading branch information
jamesbrink committed May 31, 2017
commit cbb06725abb37e6eb37823e70770af9382e10109
8 changes: 4 additions & 4 deletions README.rst
AC96
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ Setup for the old Wordpress API:
wpapi = API(
url="http://example.com",
consumer_key="XXXXXXXXXXXX",
consumer_secret="XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
consumer_secret="XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
api="wp-json",
version=None,
wp_user="XXXX",
Expand All @@ -96,7 +96,7 @@ Setup for the new WP REST API v2:
wpapi = API(
url="http://example.com",
consumer_key="XXXXXXXXXXXX",
consumer_secret="XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
consumer_secret="XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
api="wp-json",
version="wp/v2",
wp_user="XXXX",
Expand All @@ -112,7 +112,7 @@ Setup for the old WooCommerce API v3:
wcapi = API(
url="http://example.com",
consumer_key="ck_XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
consumer_secret="cs_XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
consumer_secret="cs_XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
api="wc-api",
version="v3"
)
Expand Down Expand Up @@ -226,4 +226,4 @@ Changelog

- Initial fork
- Implemented 3-legged OAuth
- Tested with pagination
- Tested with pagination
0