need help with plimus handshake ipn

extra

Power Member
Joined
May 18, 2007
Messages
533
Reaction score
102
Hello
Does anyone has sample code for integrate the plimus handshake ipn?.
i got all the parameters on my ipn page but cant understand how they want me to send them the md5 hash

It will be great if somebody has sample for that in c sharp or can help me
solve this issue

thanks
 
IPN for Plimus will work by just accepting their IPN call and you reading the POST variables made to your IPN handler. Unlike Paypal, there is no need to return any values. Plimus does not provide an "Oder Validate" feature over IPN. So any url variables within the IPN is game.

Secure? Not at all. Anyone that gains knowledge to your IPN url can easily fake orders.
 
@seo-madness not exactly, you could secure yourself by limiting access in your code to their ipn server only, this way you avoid scammers, plimus really has good and easy to use licensing system but fees a little high.
@op you just need to extract the post nothing more, and you already did that.
 
@seo-madness not exactly, you could secure yourself by limiting access in your code to their ipn server only, this way you avoid scammers, plimus really has good and easy to use licensing system but fees a little high.
@op you just need to extract the post nothing more, and you already did that.

Yep exactly right. The example plimus script they give you includes checking of the server IP to offer some protection from spoofing it. I have got to say I wish all IPN scripts were as easy to use and get setup as the plimus script.
 
The sample script has most of the structure of how plimus works i suggest you do some experimenting with it.
 
Back
Top