Jump to content

Tokens


Wolphie

Recommended Posts

I'm stuck on creating a token kind of system.

For example, say if somebody makes a payment through paypal - Then paypal re-directs them to a dynamic url which contains a token which can only be used once and is changed every payment to validate it.

 

How would i go about doing this?

 

 

Cheers, J.

Link to comment
https://forums.phpfreaks.com/topic/90938-tokens/
Share on other sites

if your using paypal the best way to verify a payment completed is their IPN system.

 

Read up on their site but basically paypal allows you to carry through a single 64 bit string in a custom variable that you can return when the payment is completed.

they have a php premade ipn script to look at to help you with this

Link to comment
https://forums.phpfreaks.com/topic/90938-tokens/#findComment-466098
Share on other sites

Use the IPN system from paypal. It sends a Payment notification to a script on yer site once a payment is sent to your account.

 

Just depends how ya is using the credit/token system.

 

most ppl use a stored credit system, where their accout can be increased with credits once payment is recieved.

and credits are deducted when used on the site.

 

Link to comment
https://forums.phpfreaks.com/topic/90938-tokens/#findComment-466100
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.