diff --git a/CHANGELOG.md b/CHANGELOG.md index cabd1d2d..41249484 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,7 +15,7 @@ All notable changes to this project will be documented in this file. ### Changed -- Graph API call upgrade to [v11.0]https://developers.facebook.com/docs/graph-api/changelog/version11.0 +- Graph API call upgrade to [v11.0](https://developers.facebook.com/docs/graph-api/changelog/version11.0) ## v10.0.1 diff --git a/README.md b/README.md index c2dbade0..1b285edc 100644 --- a/README.md +++ b/README.md @@ -151,7 +151,7 @@ $adset = $account->createAdSet( array(), array( AdSetFields::NAME => 'My Test AdSet', - AdSetFields::CAMPAIGN_ID => campaign_id, + AdSetFields::CAMPAIGN_ID => $campaign_id, AdSetFields::DAILY_BUDGET => 150, AdSetFields::START_TIME => (new \DateTime("+1 week"))->format(\DateTime::ISO8601), AdSetFields::END_TIME => (new \DateTime("+2 week"))->format(\DateTime::ISO8601), @@ -332,7 +332,7 @@ $account->read(array('id')); ``` When running this code, this cURL request will be printed to the console as: -``` +```shell curl -G \ -d 'fields=id' \ -d 'access_token=' \