pdbreen

Results 10 comments of pdbreen

Per API doc (https://developer.mailchimp.com/documentation/mailchimp/reference/lists/segments/#create-post_lists_list_id_segments), you're missing the condition_type. If looks like you're trying to add an "Interest" condition, so it would look something like this: ``` $api_key = "xxxxxxxxxxxxxxxx-us11"; $list_id...

I happen to be in the middle of a migration to mailchimp so I'm doing some automated list and segment setup. To figure out what the API is expecting, the...

I've seen MC respond with a "use PUT" error on a PUT request on occasion as well. This snippet from https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html > The Allow header field MAY be provided with...

Two thoughts 1) make sure you're including `payments:shipping_address` in your scope ``` ... authorization: function () { loginOptions = {scope: 'profile payments:widget payments:shipping_address', popup: true}; authRequest = amazon.Login.authorize(loginOptions, '{{route('amazon_login')}}'); },...

Are you including the token passed to your logon handler as the address_consent_token in the call to `getOrderReferenceDetails`? ``` $this->result = $this->client->getOrderReferenceDetails([ 'amazon_order_reference_id' => $orderReferenceId, 'address_consent_token' => $token, ]); ```

I'd double check to make sure that address_consent_token being passed in is correct and the scope is being set properly. When its not supplied, you get partial shipping detail like...

Debug your $_POST values and I think you'll find the addressConsentToken is not set/missing. So, you'll need to go back to the amazon integration doc and figure out what step...

@capellidev with the repository added, you should now be able to run `composer require amzn/amazon-pay-sdk-php` and it will find the package. Or, you can directly add a new entry to...

Using the code as of 01/21/14, I added the following to the very start of the WizardCard.validate function to better support multiple/different types of validation on the same element or...

I also had a bit of an issue using - or more likely, understanding - raw. I expected the template to be pulled as is with minimal processing, but when...