You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Figured out of this issue,
just use final String orderId = getIntent().getStringExtra("clover.intent.extra.ORDER_ID"); final Order order = getIntent().getParcelableExtra("com.clover.intent.extra.ORDER");
instead of final String orderId = getIntent().getStringExtra(Intents.EXTRA_ORDER_ID); final Order order = (Order) getIntent().getExtras().get(Intents.EXTRA_ORDER);
When trying to get payment data from a Merchant Facing Intent, intent.getParcelableExtra(Intents.EXTRA_ORDER) always returns null.
I can get other data from the intent, such as:
However, EXTRA_ORDER always returns null.
I made sure that I included the intent filter in my manifest.xml
The text was updated successfully, but these errors were encountered: