#How to retrive this key.
9 messages · Page 1 of 1 (latest)
That key is how you identify your app to Stripe and control access to your account. If it were retrievable via a checkout url, anyone you send a link to could impersonate your account
This is your checkout link? If so, you should retrieve the pk_live from your Stripe developer dashboard. If this isn't your checkout link, well what you're trying to do could be accurately called "hacking" and would constitute illegal access of someone else's Stripe application, and we don't allow discussion of illegal behavior here 🤷
hi, PK is private. Please explain your intent here? If you want to create a checkout you have to get the PK from your dashboard and use it to create a checkout link, that is handled server side and the sensitve information isnt visible to public
FYI PK_key is publishable key
Stripe has 2 major keys right? one is the pk_key another is the sk_key but sk_key isnt visible anywhere even if you intercept requests or do whatever as its a secret key but pusblishable key aka PK key can be seen in the req body and thats what i want to extract using a program
Oh I probably should have verified that before popping off 🤦 but still you should be pulling it out of settings
Why are you trying to extract this from requests instead of getting it from the primary source?
I wanted to test if sending request to stripe api with cs and pk key which it uses to verify and then i want to send my billing information also to the stripe api and then like save my cc infos and when i need to pay for stripe gateways i could just paste a link to my program and it automatically uses my cc to checkout itself {ik harmful for privacy but its just for test so why not }