Forum PayVault Will there be a Payment System Again??

Discussion and help relating to the PlayerIO payment solution, PayVault.

Will there be a Payment System Again??

Postby SharkChase » March 23rd, 2016, 8:56 pm

Hey, i just made virtual shop and i got error Unable to buy item, and then found out yahoo don't support payments anymore..
Is there anouther way to get payments to work or is it gone forever :(
SharkChase
 
Posts: 15
Joined: March 18th, 2016, 1:02 am

Re: Will there be a Payment System Again??

Postby Henrik » March 23rd, 2016, 9:45 pm

Yahoo Games Payments only worked when publishing to the Yahoo Games Channel, and since that is going away, and payments have been disabled there, that's not a good idea to try to implement, no. :-)

You can still integrate PayVault payments and use Facebook payments if you publish to Facebook instead:

https://gamesnet.yahoo.net/documentatio ... facebookv2
Henrik
.IO
 
Posts: 1880
Joined: January 4th, 2010, 1:53 pm

Re: Will there be a Payment System Again??

Postby SharkChase » March 23rd, 2016, 9:47 pm

i have done this i get Unable to buy item im using this for Facebook, paypal

Code: Select all
TheClient.payVault.getBuyDirectInfo(
            "paypal",               
            {currency:"USD", item_name:String(details)},
            [{itemKey:String(theitem)}],
            function(info:Object):void{
            navigateToURL(new URLRequest(info.paypalurl), "_blank")
            },
            function(e:PlayerIOError):void{ alert("Unable to buy item") } 
SharkChase
 
Posts: 15
Joined: March 18th, 2016, 1:02 am

Re: Will there be a Payment System Again??

Postby Henrik » March 23rd, 2016, 10:01 pm

Maybe if you print out the error you get in that error callback it would tell you what the error actually is so that you can fix it?

Just a thought...
Henrik
.IO
 
Posts: 1880
Joined: January 4th, 2010, 1:53 pm

Re: Will there be a Payment System Again??

Postby SharkChase » March 23rd, 2016, 10:57 pm

i got it working.. paid for the item but it never gave the item :3
SharkChase
 
Posts: 15
Joined: March 18th, 2016, 1:02 am

Re: Will there be a Payment System Again??

Postby Henrik » March 23rd, 2016, 11:34 pm

Facebook has a pretty neat system for testing payments, you should be able to add yourself as an app admin for payments, and then you get extra options in their payment dialog to simulate different results, so that your game can respond accordingly.
Henrik
.IO
 
Posts: 1880
Joined: January 4th, 2010, 1:53 pm

Re: Will there be a Payment System Again??

Postby SharkChase » March 24th, 2016, 12:51 am

Im using paypal :3 not facebook :3
my game is on facebook but im using paypal only
SharkChase
 
Posts: 15
Joined: March 18th, 2016, 1:02 am

Re: Will there be a Payment System Again??

Postby Henrik » March 24th, 2016, 6:13 am

The PayPal PayVault provider also has test functionality, set "sandbox" to "true", and the payment will go to the PayPal sandbox. (Which allows you to complete the payment with a sandbox test account)

https://gamesnet.yahoo.net/documentatio ... der/paypal
Henrik
.IO
 
Posts: 1880
Joined: January 4th, 2010, 1:53 pm

Re: Will there be a Payment System Again??

Postby SharkChase » March 24th, 2016, 1:54 pm

the payment goes thru but i never recieve the item even with sandbox... i looked at payvault transactions the disbute is open
SharkChase
 
Posts: 15
Joined: March 18th, 2016, 1:02 am

Re: Will there be a Payment System Again??

Postby Henrik » March 24th, 2016, 11:11 pm

Check your IPN logs on PayPal, there might be clues there as to why the purchase doesn't go through.
Henrik
.IO
 
Posts: 1880
Joined: January 4th, 2010, 1:53 pm

Re: Will there be a Payment System Again??

Postby SharkChase » March 25th, 2016, 12:35 am

Paypal says Completed
SharkChase
 
Posts: 15
Joined: March 18th, 2016, 1:02 am


Return to PayVault