<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Paypal with Django</title>
	<atom:link href="http://blog.mauveweb.co.uk/2007/10/10/paypal-with-django/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mauveweb.co.uk/2007/10/10/paypal-with-django/</link>
	<description>experiments in contemporary web development</description>
	<pubDate>Mon, 08 Sep 2008 13:41:53 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
		<item>
		<title>By: Benjamin Keating</title>
		<link>http://blog.mauveweb.co.uk/2007/10/10/paypal-with-django/#comment-23914</link>
		<dc:creator>Benjamin Keating</dc:creator>
		<pubDate>Tue, 15 Jul 2008 20:54:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mauveweb.co.uk/2007/10/10/paypal-with-django/#comment-23914</guid>
		<description>I am looking for some very similar code. I am building a Membership system which is based on PayFlowPro, which uses a local paypal SDK. Paypals docs are the worst ever, in my opinion and Im trying to fuse it together with my Django projects.  Any advice?</description>
		<content:encoded><![CDATA[<p>I am looking for some very similar code. I am building a Membership system which is based on PayFlowPro, which uses a local paypal SDK. Paypals docs are the worst ever, in my opinion and Im trying to fuse it together with my Django projects.  Any advice?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: karzeem</title>
		<link>http://blog.mauveweb.co.uk/2007/10/10/paypal-with-django/#comment-23756</link>
		<dc:creator>karzeem</dc:creator>
		<pubDate>Thu, 26 Jun 2008 00:42:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mauveweb.co.uk/2007/10/10/paypal-with-django/#comment-23756</guid>
		<description>Whoops, no HTML allowed.  Here it is with the 's replaced with /s.

/input type="hidden" name="encrypted" value="{{ encryptedBlob }}"/
/input type="hidden" name="business" value="contact@psthisispublic.com"/
/input type="hidden" name="cmd" value="_s-xclick"/
/input type="submit" value="Yes, proceed to PayPal"/</description>
		<content:encoded><![CDATA[<p>Whoops, no HTML allowed.  Here it is with the &#8217;s replaced with /s.</p>
<p>/input type=&#8221;hidden&#8221; name=&#8221;encrypted&#8221; value=&#8221;{{ encryptedBlob }}&#8221;/<br />
/input type=&#8221;hidden&#8221; name=&#8221;business&#8221; value=&#8221;contact@psthisispublic.com&#8221;/<br />
/input type=&#8221;hidden&#8221; name=&#8221;cmd&#8221; value=&#8221;_s-xclick&#8221;/<br />
/input type=&#8221;submit&#8221; value=&#8221;Yes, proceed to PayPal&#8221;/</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: karzeem</title>
		<link>http://blog.mauveweb.co.uk/2007/10/10/paypal-with-django/#comment-23755</link>
		<dc:creator>karzeem</dc:creator>
		<pubDate>Thu, 26 Jun 2008 00:41:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mauveweb.co.uk/2007/10/10/paypal-with-django/#comment-23755</guid>
		<description>The same error ("The email address for the business is not present in the encrypted blob. Please contact your merchant.”) has been hanging me up for a couple days.  Your code here has been enormously helpful—I wonder if I could get your opinion on the markup below.  I'm including the cmd and business pairs both in the markup and the encrypted blob, to no avail.  Does a quick glance from someone who knows more than me reveal any egregious mistakes?  Thanks very much.




</description>
		<content:encoded><![CDATA[<p>The same error (&#8221;The email address for the business is not present in the encrypted blob. Please contact your merchant.”) has been hanging me up for a couple days.  Your code here has been enormously helpful—I wonder if I could get your opinion on the markup below.  I&#8217;m including the cmd and business pairs both in the markup and the encrypted blob, to no avail.  Does a quick glance from someone who knows more than me reveal any egregious mistakes?  Thanks very much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mauve</title>
		<link>http://blog.mauveweb.co.uk/2007/10/10/paypal-with-django/#comment-21450</link>
		<dc:creator>mauve</dc:creator>
		<pubDate>Mon, 07 Apr 2008 11:30:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mauveweb.co.uk/2007/10/10/paypal-with-django/#comment-21450</guid>
		<description>Oh, sorry. I don't know how that double-slash got in there. It's not in my source. I blame Wordpress and/or PHP.

I didn't need the cert_id in the plain though.</description>
		<content:encoded><![CDATA[<p>Oh, sorry. I don&#8217;t know how that double-slash got in there. It&#8217;s not in my source. I blame Wordpress and/or PHP.</p>
<p>I didn&#8217;t need the cert_id in the plain though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: erral</title>
		<link>http://blog.mauveweb.co.uk/2007/10/10/paypal-with-django/#comment-21449</link>
		<dc:creator>erral</dc:creator>
		<pubDate>Mon, 07 Apr 2008 10:09:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mauveweb.co.uk/2007/10/10/paypal-with-django/#comment-21449</guid>
		<description>Thank you for your answer. I finally had it working, exchanging the \\n with \n and sending the cert_id parameter in clear without encrypting it.


Mikel</description>
		<content:encoded><![CDATA[<p>Thank you for your answer. I finally had it working, exchanging the \\n with \n and sending the cert_id parameter in clear without encrypting it.</p>
<p>Mikel</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mauve</title>
		<link>http://blog.mauveweb.co.uk/2007/10/10/paypal-with-django/#comment-21357</link>
		<dc:creator>mauve</dc:creator>
		<pubDate>Thu, 03 Apr 2008 22:13:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mauveweb.co.uk/2007/10/10/paypal-with-django/#comment-21357</guid>
		<description>No, it works for me with line feeds; the e-mail address is passed with the key 'business'. I recall that the error messages are misleading though. Don't get hung up on the format of the plaintext because I think you get similar messages if there's a problem with the cryptography.</description>
		<content:encoded><![CDATA[<p>No, it works for me with line feeds; the e-mail address is passed with the key &#8216;business&#8217;. I recall that the error messages are misleading though. Don&#8217;t get hung up on the format of the plaintext because I think you get similar messages if there&#8217;s a problem with the cryptography.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: erral</title>
		<link>http://blog.mauveweb.co.uk/2007/10/10/paypal-with-django/#comment-21345</link>
		<dc:creator>erral</dc:creator>
		<pubDate>Thu, 03 Apr 2008 10:38:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mauveweb.co.uk/2007/10/10/paypal-with-django/#comment-21345</guid>
		<description>Hi:

Thank you for this code snippet ! I'm testing it in my Plone application using the PayPal sandbox, but I always get "The email address for the business is not present in the encrypted blob. Please contact your merchant.".

As you may guess, I pass correctly the business' e-mail address in the encrypted data.

I've read somewhere to try separating the key=value pairs with comma (,) instead of newlines or quoting the texts, but I had no success. 

Any hint will be appreciated,

Mikel Larreategi
http://www.codesyntax.com</description>
		<content:encoded><![CDATA[<p>Hi:</p>
<p>Thank you for this code snippet ! I&#8217;m testing it in my Plone application using the PayPal sandbox, but I always get &#8220;The email address for the business is not present in the encrypted blob. Please contact your merchant.&#8221;.</p>
<p>As you may guess, I pass correctly the business&#8217; e-mail address in the encrypted data.</p>
<p>I&#8217;ve read somewhere to try separating the key=value pairs with comma (,) instead of newlines or quoting the texts, but I had no success. </p>
<p>Any hint will be appreciated,</p>
<p>Mikel Larreategi<br />
<a href="http://www.codesyntax.com" rel="nofollow">http://www.codesyntax.com</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
