-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unknown error saving pass #4
Comments
Hello, I am having the same error. @stephenmcd @dmengelt @itsJoKr @linussorg any news? |
Good day @shinesoftware, can you share how your JWT looks like? |
Hello @JlUgia these are the details: GoogleWalletButton(
onPressed: _savePass,
) _savePass() async {
bool? saved = false;
String text;
try {
if (_available == true) {
saved = await googleWallet.savePassesJwt(jwt);
text = "Pass saved: $saved";
} else {
// Wallet unavailable,
// fall back to saving pass via web
await _savePassBrowser();
text = "Opened Google Wallet via web";
}
} on PlatformException catch (e) {
text = "Error: '${e.message}'.";
}
setState(() {});
} |
I got the same issue too. Any solutions ? |
here is my testingJWT |
Hello,
after setting all the parameters and copying your code with my JWT I get the error:
handleError: 8 / Unknown error saving pass
What does it means?
thanks
The text was updated successfully, but these errors were encountered: