De snellere, veiligere manier om geld te verzenden, online te betalen, geld te ontvangen of een verkopersaccount aan te maken.
PayPal Express Checkout integreert het gebruik van IPN-callback, zelfs als de callback en customfield door een ander systeem worden gebruikt (bijv. winkelwagen). Daarom moet u een scheidingsteken kiezen dat onze cookiewaarde en die van derden scheidt. We zullen || . gebruiken in dit voorbeeld.
Kies scheidingsteken
Paypal knop
<script id="pap_x2s6df8d" src="https://URL_TO_PostAffiliatePro/scripts/trackjs.js" type="text/javascript"></script>
<script type="text/javascript">PostAffTracker.setAccountId('Account_ID');
PostAffTracker.setAppendValuesToField('||');
PostAffTracker.writeCookieToCustomField('pap_ab78y5t4a');
</script>
Dit zorgt ervoor dat de verwijzer wordt toegevoegd aan het aangepaste veld na het opgegeven scheidingsteken.
Integratie met uw IPN-verwerkingsscript – deel 1
In het geval dat uw PayPal-verwerkingsscript in PHP is, kunt u de volgende code gebruiken om dat te bereiken. U kunt het aan het begin van uw verwerkingsbestand plaatsen:
/* PAP integration */
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://URL_TO_PostAffiliatePro/plugins/PayPal/paypal.php");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $_POST);
curl_exec($ch);
/* end of PAP integration */
Integratie met uw IPN-verwerkingsscript – deel 2
<?php
$separator = '||';
if ($_POST['custom'] != '') {
$explodedCustomValue = explode($separator, $_POST['custom'], 2);
if (count($explodedCustomValue) == 2) {
$_REQUEST['custom'] = $_POST['custom'] = $explodedCustomValue[0];
}
}
?>
Dit is alles wat nodig is. Wanneer er nu een uitverkoop is, gebruikt PayPal Express Checkout zijn IPN-functie om ons script voor het volgen van verkopen aan te roepen, en het systeem genereert commissie voor de partner.
PayPal Express Checkout (IPN gebruikt door ander script)
The article discusses integrating PayPal with IPN-callback and customized field values in Post Affiliate Pro. The tracking cookie value can be sent to the processing script by adding the cookie value to the original URL. The IPN-callback is directed to the Post Affiliate Pro paypal.php script, and commissions are sent to the correct partner when a sale is made. Additional resources such as PayPal Express Checkout and Paymate Express are also mentioned. The remaining text consists of information about Post Affiliate Pro's products, services, and support.
PayPal (IPN en aangepast veld gebruikt door ander script)
Post Affiliate Pro is a TUNE alternative for businesses looking to modify their software. It offers powerful features, customizable marketing tools, seamless integrations, and a free 14-day trial with 24/7 customer service. Another option for earning extra income is TORO Advertising's partner program, which has various campaign rules and promotions geared towards influencers, text link banners, and social media ads. Partner programs improve sales, web traffic, and conversion rates, but can be time-consuming with initial investment costs and potentially fewer payout options than a network.
PayPal (IPN gebruikt door ander script)
Dit artikel beschrijft hoe u de PayPal-knop kunt integreren met Post Affiliate Pro en commissie kunt genereren voor partnerondernemingen. Het bevat voorbeelden van de bijgewerkte PayPal-formulieren en geeft instructies voor het configureren van de IPN-callback en het doorsturen naar het PAP paypal.php-script. Ook wordt vermeld dat HTML-tags alleen in de knoppen moeten worden ingevoegd en dat de scripttag slechts één keer op de hele pagina moet worden ingevoegd.
De tekst gaat over het integreren van PayPal met behulp van IPN-callback. Het artikel beschrijft hoe PayPal geïntegreerd kan worden met behulp van de PayPal IPN-afhandelingsplug-in. Ook worden er stappen uitgelegd over hoe de integratiecode aan het PayPal-knopformulier kan worden toegevoegd. Er wordt opgemerkt dat als terugkerende commissie wordt gecreëerd, in het veld data1 transactie-ID wordt ingevoegd. Het artikel eindigt met een opmerking over het gebruik van meer knoppen.