#Nixon-keys and permissions
1 messages · Page 1 of 1 (latest)
👋 happy to help
you'd have to check the permissions on your key
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
could you please share the request id? here's how you can find one https://support.stripe.com/questions/finding-the-id-for-an-api-request
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
How do I check the permissions for my key? looking in the dashboard now
Where do i edit the key?
do you see the key ek_live_YW....?
No, the first two are 'pk_live' and 'sk_live, the bottom one is 'rk_live'
i can edit the bottom one, i get to a permissions screen but i am not sure which ones are missing to enable the stripe sdk for adding card to digital wallet
could you please share the request id where you got that error?
Those ephemeral keys don't appear on that dashboard page. Can you share the account ID acct_xxx from the error message? I can see exactly what you're doing and say what's wrong with it.
also do please share the exact code you're using in your Android app or your backend server that leads to this error!
acct_18p1smBtCeTGhDJc
googlePayButton.setOnClickListener {
PushProvisioningActivityStarter(
it.context.activity()!!, // The Activity or Fragment you are initiating the push provisioning from
PushProvisioningActivityStarter.Args(
"Stripe Card", // The name that will appear on the push provisioning UI
EphemeralKeyProvider(), // Your instance of EphemeralKeyProvider
true // If you want to enable logs or not
)
).startForResult()
}
@Parcelize
class EphemeralKeyProvider : PushProvisioningEphemeralKeyProvider {
override fun createEphemeralKey(p0: String, p1: EphemeralKeyUpdateListener) {
p1.onKeyUpdate(Gson().toJson(ExampleJson2KtKotlin()))
}
}
ok, you're using Issuing and that feature where you can create a card and provision it to the wallet of the device.