I am getting the following error when I attempt to add
'AmericanExpress' as a payment method.
<errors>
<error type="data" field="payment_accepted" reason="Invalid payment
method" />
</errors>
This code works fine ...
entry.getGoogleBaseAttributes().addTextAttribute("payment_accepted",
"Visa");
entry.getGoogleBaseAttributes().addTextAttribute("payment_accepted",
"MasterCard");
entry.getGoogleBaseAttributes().addTextAttribute("payment_accepted",
"Discover");
And this breaks ...
entry.getGoogleBaseAttributes().addTextAttribute("payment_accepted",
"Visa");
entry.getGoogleBaseAttributes().addTextAttribute("payment_accepted",
"MasterCard");
entry.getGoogleBaseAttributes().addTextAttribute("payment_accepted",
"Discover");
entry.getGoogleBaseAttributes().addTextAttribute("payment_accepted",
"AmericanExpress");
Any idea's?
Thanks!
Aryeh