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
{{ message }}
This repository has been archived by the owner on Jul 20, 2020. It is now read-only.
Hi, we're having trouble with getting the invoice id, taxId, number id.... and after checking your site (web-sideload), I've found out the reason:
The return URL need to fully encode to percent character. Hence, in your sample code, this won't get us the all the params we need (invoice id, tax id...)
Hi, we're having trouble with getting the invoice id, taxId, number id.... and after checking your site (web-sideload), I've found out the reason:
The return URL need to fully encode to percent character. Hence, in your sample code, this won't get us the all the params we need (invoice id, tax id...)
NSString *encodedReturnUrl = [@"myapp://handler?{result}?Type={Type}&InvoiceId={InvoiceId}&Tip={Tip}&Email={Email}&TxId={TxId}" stringByAddingPercentEscapesUsingEncoding:NSASCIIStringEncoding];
I fix this by using these:
And then we could get all those params, except for the TxId, we still don't receive it. However, since it's trivial, I won't ask for it for now.
Please confirm and update the sample for everyone who'll need this. Thanks!!!
The text was updated successfully, but these errors were encountered: