Get shipping address from paypal order detail in javascriptHow to validate an email address in JavaScript?How do I remove a property from a JavaScript object?How do you get a timestamp in JavaScript?How can I get query string values in JavaScript?Get the current URL with JavaScript?Get selected value in dropdown list using JavaScript?How do I get the current date in JavaScript?Get selected text from a drop-down list (select box) using jQueryHow do I remove a particular element from an array in JavaScript?jQuery Get Selected Option From Dropdown

Problems with numbers (result of calculations) alignment using siunitx package inside tabular environment

When and why did journal article titles become descriptive, rather than creatively allusive?

What happened to Rhaegal?

What happens if I start too many background jobs?

What is the word which sounds like "shtrass"?

What word means "to make something obsolete"?

How can I close a gap between my fence and my neighbor's that's on his side of the property line?

Is lying to get "gardening leave" fraud?

Can fracking help reduce CO2?

Can commander tax be proliferated?

The barbers paradox first order logic formalization

Selecting a secure PIN for building access

Was Hulk present at this event?

Public Salesforce Site and Security Review

Unexpected email from Yorkshire Bank

Why do freehub and cassette have only one position that matches?

Hang 20lb projector screen on Hardieplank

Topological Spaces homeomorphic

What is the limiting factor for a CAN bus to exceed 1Mbps bandwidth?

Why is the SNP putting so much emphasis on currency plans?

Is it the same airport YUL and YMQ in Canada?

Was the ancestor of SCSI, the SASI protocol, nothing more than a draft?

How long can a 35mm film be used/stored before it starts to lose its quality after expiry?

Junior developer struggles: how to communicate with management?



Get shipping address from paypal order detail in javascript


How to validate an email address in JavaScript?How do I remove a property from a JavaScript object?How do you get a timestamp in JavaScript?How can I get query string values in JavaScript?Get the current URL with JavaScript?Get selected value in dropdown list using JavaScript?How do I get the current date in JavaScript?Get selected text from a drop-down list (select box) using jQueryHow do I remove a particular element from an array in JavaScript?jQuery Get Selected Option From Dropdown






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















So I am trying to make a e-commerce website for someone and therefore, have set up a paypal button to accept payments. I ask the client to pay the price then I send the dropdown/radio button data to php in order to send myself (via the php mailer) the order details (like color/size of the clothing as well as the order ID to identify it). But I found that it would be much easier and automatic to just get the buyer's shipping address and send it by email along with the other details. Right now I have only found a way to get the order ID, and the buyer's name, but I really need the address.



onApprove: function (data, actions) 
return actions.order.capture().then(function (details)
var BlackCheckbox = document.getElementById("black");
// Getting the color by checking if the checkbox `black` is checked or not
var color = (BlackCheckbox.checked === true) ? 'Black' :
'White';
// Finding the size by seeing which size the user has selected from the dropdown.
var size = $('span.size').text();

var item = 'Script Windbreaker';

var name = details.payer.name.given_name;

var address = details.payer.address.street_address;
alert('The address is ' + address);

$.post('Payment_Validation.php',
postitem: item,
postname: name,
postcolor: color,
postsize: size,
postid: data.orderID
, function () );

return fetch('/paypal-transaction-complete',
method: 'post',
body: JSON.stringify(
orderID: data.orderID,
)
);
);
,


And here is the php:



<?php

$item = $_POST['postitem'];
$name = $_POST['postname'];
$color = $_POST['postcolor'];
$size = $_POST['postsize'];
$id = $_POST['postid'];

$to='taha.rhidouani@gmail.com';
$subject= 'Payment information for order '.$id;
$message="Item: ".$item."n"."Color: ".$color."n"."Name of buyer: ".$name."n"."Size: ".$size."n"."Purchase ID: ".$id."nn"."Check full payment details: https://www.paypal.com/mep/dashboard";

mail($to, $subject, $message);

?>


I am trying to get the address with:



var address = details.payer.address.street_address;


And testing it with:



alert('The address is ' + address);


But it simply returns as undefined.










share|improve this question




























    0















    So I am trying to make a e-commerce website for someone and therefore, have set up a paypal button to accept payments. I ask the client to pay the price then I send the dropdown/radio button data to php in order to send myself (via the php mailer) the order details (like color/size of the clothing as well as the order ID to identify it). But I found that it would be much easier and automatic to just get the buyer's shipping address and send it by email along with the other details. Right now I have only found a way to get the order ID, and the buyer's name, but I really need the address.



    onApprove: function (data, actions) 
    return actions.order.capture().then(function (details)
    var BlackCheckbox = document.getElementById("black");
    // Getting the color by checking if the checkbox `black` is checked or not
    var color = (BlackCheckbox.checked === true) ? 'Black' :
    'White';
    // Finding the size by seeing which size the user has selected from the dropdown.
    var size = $('span.size').text();

    var item = 'Script Windbreaker';

    var name = details.payer.name.given_name;

    var address = details.payer.address.street_address;
    alert('The address is ' + address);

    $.post('Payment_Validation.php',
    postitem: item,
    postname: name,
    postcolor: color,
    postsize: size,
    postid: data.orderID
    , function () );

    return fetch('/paypal-transaction-complete',
    method: 'post',
    body: JSON.stringify(
    orderID: data.orderID,
    )
    );
    );
    ,


    And here is the php:



    <?php

    $item = $_POST['postitem'];
    $name = $_POST['postname'];
    $color = $_POST['postcolor'];
    $size = $_POST['postsize'];
    $id = $_POST['postid'];

    $to='taha.rhidouani@gmail.com';
    $subject= 'Payment information for order '.$id;
    $message="Item: ".$item."n"."Color: ".$color."n"."Name of buyer: ".$name."n"."Size: ".$size."n"."Purchase ID: ".$id."nn"."Check full payment details: https://www.paypal.com/mep/dashboard";

    mail($to, $subject, $message);

    ?>


    I am trying to get the address with:



    var address = details.payer.address.street_address;


    And testing it with:



    alert('The address is ' + address);


    But it simply returns as undefined.










    share|improve this question
























      0












      0








      0








      So I am trying to make a e-commerce website for someone and therefore, have set up a paypal button to accept payments. I ask the client to pay the price then I send the dropdown/radio button data to php in order to send myself (via the php mailer) the order details (like color/size of the clothing as well as the order ID to identify it). But I found that it would be much easier and automatic to just get the buyer's shipping address and send it by email along with the other details. Right now I have only found a way to get the order ID, and the buyer's name, but I really need the address.



      onApprove: function (data, actions) 
      return actions.order.capture().then(function (details)
      var BlackCheckbox = document.getElementById("black");
      // Getting the color by checking if the checkbox `black` is checked or not
      var color = (BlackCheckbox.checked === true) ? 'Black' :
      'White';
      // Finding the size by seeing which size the user has selected from the dropdown.
      var size = $('span.size').text();

      var item = 'Script Windbreaker';

      var name = details.payer.name.given_name;

      var address = details.payer.address.street_address;
      alert('The address is ' + address);

      $.post('Payment_Validation.php',
      postitem: item,
      postname: name,
      postcolor: color,
      postsize: size,
      postid: data.orderID
      , function () );

      return fetch('/paypal-transaction-complete',
      method: 'post',
      body: JSON.stringify(
      orderID: data.orderID,
      )
      );
      );
      ,


      And here is the php:



      <?php

      $item = $_POST['postitem'];
      $name = $_POST['postname'];
      $color = $_POST['postcolor'];
      $size = $_POST['postsize'];
      $id = $_POST['postid'];

      $to='taha.rhidouani@gmail.com';
      $subject= 'Payment information for order '.$id;
      $message="Item: ".$item."n"."Color: ".$color."n"."Name of buyer: ".$name."n"."Size: ".$size."n"."Purchase ID: ".$id."nn"."Check full payment details: https://www.paypal.com/mep/dashboard";

      mail($to, $subject, $message);

      ?>


      I am trying to get the address with:



      var address = details.payer.address.street_address;


      And testing it with:



      alert('The address is ' + address);


      But it simply returns as undefined.










      share|improve this question














      So I am trying to make a e-commerce website for someone and therefore, have set up a paypal button to accept payments. I ask the client to pay the price then I send the dropdown/radio button data to php in order to send myself (via the php mailer) the order details (like color/size of the clothing as well as the order ID to identify it). But I found that it would be much easier and automatic to just get the buyer's shipping address and send it by email along with the other details. Right now I have only found a way to get the order ID, and the buyer's name, but I really need the address.



      onApprove: function (data, actions) 
      return actions.order.capture().then(function (details)
      var BlackCheckbox = document.getElementById("black");
      // Getting the color by checking if the checkbox `black` is checked or not
      var color = (BlackCheckbox.checked === true) ? 'Black' :
      'White';
      // Finding the size by seeing which size the user has selected from the dropdown.
      var size = $('span.size').text();

      var item = 'Script Windbreaker';

      var name = details.payer.name.given_name;

      var address = details.payer.address.street_address;
      alert('The address is ' + address);

      $.post('Payment_Validation.php',
      postitem: item,
      postname: name,
      postcolor: color,
      postsize: size,
      postid: data.orderID
      , function () );

      return fetch('/paypal-transaction-complete',
      method: 'post',
      body: JSON.stringify(
      orderID: data.orderID,
      )
      );
      );
      ,


      And here is the php:



      <?php

      $item = $_POST['postitem'];
      $name = $_POST['postname'];
      $color = $_POST['postcolor'];
      $size = $_POST['postsize'];
      $id = $_POST['postid'];

      $to='taha.rhidouani@gmail.com';
      $subject= 'Payment information for order '.$id;
      $message="Item: ".$item."n"."Color: ".$color."n"."Name of buyer: ".$name."n"."Size: ".$size."n"."Purchase ID: ".$id."nn"."Check full payment details: https://www.paypal.com/mep/dashboard";

      mail($to, $subject, $message);

      ?>


      I am trying to get the address with:



      var address = details.payer.address.street_address;


      And testing it with:



      alert('The address is ' + address);


      But it simply returns as undefined.







      javascript html paypal e-commerce






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 22 at 20:06









      TahaIncTahaInc

      204




      204






















          0






          active

          oldest

          votes












          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55307090%2fget-shipping-address-from-paypal-order-detail-in-javascript%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55307090%2fget-shipping-address-from-paypal-order-detail-in-javascript%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript