This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//sample jsp code |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Request | |
------- | |
Endpoint URL: https://api-3t.sandbox.paypal.com/nvp | |
HTTP method: POST | |
POST data: | |
USER=merchant_user_name | |
&PWD=merchant_password | |
&SIGNATURE=merchant_signature | |
&METHOD=DoCapture | |
&VERSION=95 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<config> | |
<modules> | |
<Examplecorp_Simplemoduleexample> | |
<version>1.0.0</version> | |
</Examplecorp_Simplemoduleexample> | |
</modules> | |
<global> | |
<xcom_onboarding> | |
<extensions> | |
<Namespace_Simplemoduleexample> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<config> | |
<modules> | |
<Examplecorp_Simplemoduleexample> | |
<version>1.0.0</version> | |
</Examplecorp_Simplemoduleexample> | |
</modules> | |
<global> | |
<xcom_onboarding> | |
<extensions> | |
<Namespace_Simplemoduleexample> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -s --insecure https://api-3t.sandbox.paypal.com/nvp -d | |
"USER=<Caller_ID> | |
&PWD=<Caller_Pswd> | |
&SIGNATURE=<Caller_Sig> | |
&METHOD=MassPay | |
&VERSION=93 | |
&RECEIVERTYPE=EmailAddress | |
&CURRENCYCODE=USD | |
&EMAILSUBJECT= You have a new payment from TEST | |
&[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<!-- | |
/** | |
* Magento | |
* | |
* NOTICE OF LICENSE | |
* | |
* This source file is subject to the Open Software License (OSL 3.0) | |
* that is bundled with this package in the file LICENSE.txt. | |
* It is also available through the world-wide-web at this URL: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Magento Enterprise Edition | |
* | |
* NOTICE OF LICENSE | |
* | |
* This source file is subject to the Magento Enterprise Edition License | |
* that is bundled with this package in the file LICENSE_EE.txt. | |
* It is also available through the world-wide-web at this URL: | |
* http://www.magentocommerce.com/license/enterprise-edition |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Request | |
------- | |
Endpoint URL: https://api-3t.sandbox.paypal.com/nvp | |
HTTP method: POST | |
POST data: | |
USER=merchant_user_name | |
&PWD=merchant_password | |
&SIGNATURE=merchant_signature | |
&METHOD=GetTransactionDetails | |
&TRANSACTIONID=9XJ88717E86951234 #The ID of the transaction to retrieve |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Displays values used (schema URI, bearer tokens) and includes the message body --> | |
<div class="modal" id="myModal2" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" style="display: none;"> | |
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">x</button> | |
<form> | |
<div id="step1" style=""> | |
<legend>1. Cart creates order</legend> | |
<h4>Schema URI</h4> <label> {{ @SESSION.cart_uri }}</label> | |
<h4>Cart Authorization Token </h4> | |
<label class="carttoken"> {{ @SESSION.cart_token }}</label> |