Paypal transaction to me is verified (by API), but my account balance is $0.00












0














Paypal transaction yesterday was verified (by API (https://api.paypal.com/v1/payments/payment/)), but my account balance was $0.00.



Today the same API answers me ----> ["name"]=> string(19) "INVALID_RESOURCE_ID" ["message"]=> string(39) "The requested resource ID was not found" ["information_link"]=> string(54) "https://developer.paypal.com/docs/api/payments/#errors" ["debug_id"]=> string(13) "b39d1f444064e"



And balance is $0 again. How to fix it, there in my online store are verified payments, they get "verified" status during payment, by API query.. what to do now? Where to search the problem?



(Before that the Sandbox version worked fine).



Payment execution:



if($test_mode_paypal)
$execute_url = 'https://api.sandbox.paypal.com/v1/payments/payment/'.$pay_key.'/execute';
else
$execute_url = 'https://api.paypal.com/v1/payments/payment/'.$pay_key.'/execute';

$header = array();
$header = 'Content-type: application/json';
$header = 'Accept: application/json';
$header = 'Authorization: Bearer '.$accessToken;
$data ='{
"payer_id":"'.$payer_id.'"
}';
//open connection
$curl = curl_init();
//set connection properties
curl_setopt($curl, CURLOPT_URL, $execute_url);
curl_setopt($curl, CURLOPT_POST, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_HEADER, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
curl_setopt($curl, CURLOPT_HTTPHEADER,$header);
//execute post
$response = curl_exec($curl);
//close connection
curl_close($curl);

$result = json_decode($response);


$response_arr = array();
if($result->state == 'approved')
{
$response_arr['status'] = 'ok';
$response_arr['message'] = $response;
return $response_arr;
}









share|improve this question





























    0














    Paypal transaction yesterday was verified (by API (https://api.paypal.com/v1/payments/payment/)), but my account balance was $0.00.



    Today the same API answers me ----> ["name"]=> string(19) "INVALID_RESOURCE_ID" ["message"]=> string(39) "The requested resource ID was not found" ["information_link"]=> string(54) "https://developer.paypal.com/docs/api/payments/#errors" ["debug_id"]=> string(13) "b39d1f444064e"



    And balance is $0 again. How to fix it, there in my online store are verified payments, they get "verified" status during payment, by API query.. what to do now? Where to search the problem?



    (Before that the Sandbox version worked fine).



    Payment execution:



    if($test_mode_paypal)
    $execute_url = 'https://api.sandbox.paypal.com/v1/payments/payment/'.$pay_key.'/execute';
    else
    $execute_url = 'https://api.paypal.com/v1/payments/payment/'.$pay_key.'/execute';

    $header = array();
    $header = 'Content-type: application/json';
    $header = 'Accept: application/json';
    $header = 'Authorization: Bearer '.$accessToken;
    $data ='{
    "payer_id":"'.$payer_id.'"
    }';
    //open connection
    $curl = curl_init();
    //set connection properties
    curl_setopt($curl, CURLOPT_URL, $execute_url);
    curl_setopt($curl, CURLOPT_POST, false);
    curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
    curl_setopt($curl, CURLOPT_HEADER, false);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
    curl_setopt($curl, CURLOPT_HTTPHEADER,$header);
    //execute post
    $response = curl_exec($curl);
    //close connection
    curl_close($curl);

    $result = json_decode($response);


    $response_arr = array();
    if($result->state == 'approved')
    {
    $response_arr['status'] = 'ok';
    $response_arr['message'] = $response;
    return $response_arr;
    }









    share|improve this question



























      0












      0








      0







      Paypal transaction yesterday was verified (by API (https://api.paypal.com/v1/payments/payment/)), but my account balance was $0.00.



      Today the same API answers me ----> ["name"]=> string(19) "INVALID_RESOURCE_ID" ["message"]=> string(39) "The requested resource ID was not found" ["information_link"]=> string(54) "https://developer.paypal.com/docs/api/payments/#errors" ["debug_id"]=> string(13) "b39d1f444064e"



      And balance is $0 again. How to fix it, there in my online store are verified payments, they get "verified" status during payment, by API query.. what to do now? Where to search the problem?



      (Before that the Sandbox version worked fine).



      Payment execution:



      if($test_mode_paypal)
      $execute_url = 'https://api.sandbox.paypal.com/v1/payments/payment/'.$pay_key.'/execute';
      else
      $execute_url = 'https://api.paypal.com/v1/payments/payment/'.$pay_key.'/execute';

      $header = array();
      $header = 'Content-type: application/json';
      $header = 'Accept: application/json';
      $header = 'Authorization: Bearer '.$accessToken;
      $data ='{
      "payer_id":"'.$payer_id.'"
      }';
      //open connection
      $curl = curl_init();
      //set connection properties
      curl_setopt($curl, CURLOPT_URL, $execute_url);
      curl_setopt($curl, CURLOPT_POST, false);
      curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
      curl_setopt($curl, CURLOPT_HEADER, false);
      curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
      curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
      curl_setopt($curl, CURLOPT_HTTPHEADER,$header);
      //execute post
      $response = curl_exec($curl);
      //close connection
      curl_close($curl);

      $result = json_decode($response);


      $response_arr = array();
      if($result->state == 'approved')
      {
      $response_arr['status'] = 'ok';
      $response_arr['message'] = $response;
      return $response_arr;
      }









      share|improve this question















      Paypal transaction yesterday was verified (by API (https://api.paypal.com/v1/payments/payment/)), but my account balance was $0.00.



      Today the same API answers me ----> ["name"]=> string(19) "INVALID_RESOURCE_ID" ["message"]=> string(39) "The requested resource ID was not found" ["information_link"]=> string(54) "https://developer.paypal.com/docs/api/payments/#errors" ["debug_id"]=> string(13) "b39d1f444064e"



      And balance is $0 again. How to fix it, there in my online store are verified payments, they get "verified" status during payment, by API query.. what to do now? Where to search the problem?



      (Before that the Sandbox version worked fine).



      Payment execution:



      if($test_mode_paypal)
      $execute_url = 'https://api.sandbox.paypal.com/v1/payments/payment/'.$pay_key.'/execute';
      else
      $execute_url = 'https://api.paypal.com/v1/payments/payment/'.$pay_key.'/execute';

      $header = array();
      $header = 'Content-type: application/json';
      $header = 'Accept: application/json';
      $header = 'Authorization: Bearer '.$accessToken;
      $data ='{
      "payer_id":"'.$payer_id.'"
      }';
      //open connection
      $curl = curl_init();
      //set connection properties
      curl_setopt($curl, CURLOPT_URL, $execute_url);
      curl_setopt($curl, CURLOPT_POST, false);
      curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
      curl_setopt($curl, CURLOPT_HEADER, false);
      curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
      curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
      curl_setopt($curl, CURLOPT_HTTPHEADER,$header);
      //execute post
      $response = curl_exec($curl);
      //close connection
      curl_close($curl);

      $result = json_decode($response);


      $response_arr = array();
      if($result->state == 'approved')
      {
      $response_arr['status'] = 'ok';
      $response_arr['message'] = $response;
      return $response_arr;
      }






      paypal payment-gateway






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 29 at 11:37

























      asked Nov 22 at 9:23









      Tamar Danielyan

      52




      52
























          1 Answer
          1






          active

          oldest

          votes


















          0














          Sounds like you created the payment but you never executed it.






          share|improve this answer





















          • No, that doesn't help. I've added /execute too, now I get "state":"approved", but payment still doesn't made.
            – Tamar Danielyan
            Nov 29 at 10:12










          • I've edited question, there is how the function looks like.
            – Tamar Danielyan
            Nov 29 at 11:37










          • Maybe problem occures when I create payment? I create it in this way: $curl = curl_init("https://api.sandbox.paypal.com/v1/payments/payment/PAYID-LP73NDI44T29238WB1316137"); curl_setopt($curl, CURLOPT_POST, false); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_HEADER, false); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_HTTPHEADER, array( 'Authorization: Bearer ' . $accessToken, 'Accept: application/json', 'Content-Type: application/json' )); $response = curl_exec($curl);
            – Tamar Danielyan
            Nov 29 at 12:08












          • if I have errors in "create" or "execute" functions, then why I get approved. I think maybe curl_setopt($curl, CURLOPT_POST, false); have to get true value, but then I get error "Failed to load resource: the server responded with a status of 500 () props.js:246 Uncaught Error: Request to post aylkerp.am/successful-payment-post-notify failed with 500 error. Correlation id: unknown { "message": "Server Error" } at XMLHttpRequest.<anonymous> (http.js:114)"; <aylkerp.am/successful-payment-post-notify> is my EXECUTE_URL: url in "paypal.Button.render" function
            – Tamar Danielyan
            Nov 29 at 12:19












          • If you're getting approved, and not an error back from the API, then it's working. If you aren't seeing the money then you must be looking at the wrong account. Make sure you're signed in to the same sandbox account that you pulled the API credentials from as the seller account.
            – Drew Angell
            Nov 29 at 21:02











          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%2f53427577%2fpaypal-transaction-to-me-is-verified-by-api-but-my-account-balance-is-0-00%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          Sounds like you created the payment but you never executed it.






          share|improve this answer





















          • No, that doesn't help. I've added /execute too, now I get "state":"approved", but payment still doesn't made.
            – Tamar Danielyan
            Nov 29 at 10:12










          • I've edited question, there is how the function looks like.
            – Tamar Danielyan
            Nov 29 at 11:37










          • Maybe problem occures when I create payment? I create it in this way: $curl = curl_init("https://api.sandbox.paypal.com/v1/payments/payment/PAYID-LP73NDI44T29238WB1316137"); curl_setopt($curl, CURLOPT_POST, false); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_HEADER, false); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_HTTPHEADER, array( 'Authorization: Bearer ' . $accessToken, 'Accept: application/json', 'Content-Type: application/json' )); $response = curl_exec($curl);
            – Tamar Danielyan
            Nov 29 at 12:08












          • if I have errors in "create" or "execute" functions, then why I get approved. I think maybe curl_setopt($curl, CURLOPT_POST, false); have to get true value, but then I get error "Failed to load resource: the server responded with a status of 500 () props.js:246 Uncaught Error: Request to post aylkerp.am/successful-payment-post-notify failed with 500 error. Correlation id: unknown { "message": "Server Error" } at XMLHttpRequest.<anonymous> (http.js:114)"; <aylkerp.am/successful-payment-post-notify> is my EXECUTE_URL: url in "paypal.Button.render" function
            – Tamar Danielyan
            Nov 29 at 12:19












          • If you're getting approved, and not an error back from the API, then it's working. If you aren't seeing the money then you must be looking at the wrong account. Make sure you're signed in to the same sandbox account that you pulled the API credentials from as the seller account.
            – Drew Angell
            Nov 29 at 21:02
















          0














          Sounds like you created the payment but you never executed it.






          share|improve this answer





















          • No, that doesn't help. I've added /execute too, now I get "state":"approved", but payment still doesn't made.
            – Tamar Danielyan
            Nov 29 at 10:12










          • I've edited question, there is how the function looks like.
            – Tamar Danielyan
            Nov 29 at 11:37










          • Maybe problem occures when I create payment? I create it in this way: $curl = curl_init("https://api.sandbox.paypal.com/v1/payments/payment/PAYID-LP73NDI44T29238WB1316137"); curl_setopt($curl, CURLOPT_POST, false); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_HEADER, false); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_HTTPHEADER, array( 'Authorization: Bearer ' . $accessToken, 'Accept: application/json', 'Content-Type: application/json' )); $response = curl_exec($curl);
            – Tamar Danielyan
            Nov 29 at 12:08












          • if I have errors in "create" or "execute" functions, then why I get approved. I think maybe curl_setopt($curl, CURLOPT_POST, false); have to get true value, but then I get error "Failed to load resource: the server responded with a status of 500 () props.js:246 Uncaught Error: Request to post aylkerp.am/successful-payment-post-notify failed with 500 error. Correlation id: unknown { "message": "Server Error" } at XMLHttpRequest.<anonymous> (http.js:114)"; <aylkerp.am/successful-payment-post-notify> is my EXECUTE_URL: url in "paypal.Button.render" function
            – Tamar Danielyan
            Nov 29 at 12:19












          • If you're getting approved, and not an error back from the API, then it's working. If you aren't seeing the money then you must be looking at the wrong account. Make sure you're signed in to the same sandbox account that you pulled the API credentials from as the seller account.
            – Drew Angell
            Nov 29 at 21:02














          0












          0








          0






          Sounds like you created the payment but you never executed it.






          share|improve this answer












          Sounds like you created the payment but you never executed it.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 25 at 19:47









          Drew Angell

          24.3k42342




          24.3k42342












          • No, that doesn't help. I've added /execute too, now I get "state":"approved", but payment still doesn't made.
            – Tamar Danielyan
            Nov 29 at 10:12










          • I've edited question, there is how the function looks like.
            – Tamar Danielyan
            Nov 29 at 11:37










          • Maybe problem occures when I create payment? I create it in this way: $curl = curl_init("https://api.sandbox.paypal.com/v1/payments/payment/PAYID-LP73NDI44T29238WB1316137"); curl_setopt($curl, CURLOPT_POST, false); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_HEADER, false); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_HTTPHEADER, array( 'Authorization: Bearer ' . $accessToken, 'Accept: application/json', 'Content-Type: application/json' )); $response = curl_exec($curl);
            – Tamar Danielyan
            Nov 29 at 12:08












          • if I have errors in "create" or "execute" functions, then why I get approved. I think maybe curl_setopt($curl, CURLOPT_POST, false); have to get true value, but then I get error "Failed to load resource: the server responded with a status of 500 () props.js:246 Uncaught Error: Request to post aylkerp.am/successful-payment-post-notify failed with 500 error. Correlation id: unknown { "message": "Server Error" } at XMLHttpRequest.<anonymous> (http.js:114)"; <aylkerp.am/successful-payment-post-notify> is my EXECUTE_URL: url in "paypal.Button.render" function
            – Tamar Danielyan
            Nov 29 at 12:19












          • If you're getting approved, and not an error back from the API, then it's working. If you aren't seeing the money then you must be looking at the wrong account. Make sure you're signed in to the same sandbox account that you pulled the API credentials from as the seller account.
            – Drew Angell
            Nov 29 at 21:02


















          • No, that doesn't help. I've added /execute too, now I get "state":"approved", but payment still doesn't made.
            – Tamar Danielyan
            Nov 29 at 10:12










          • I've edited question, there is how the function looks like.
            – Tamar Danielyan
            Nov 29 at 11:37










          • Maybe problem occures when I create payment? I create it in this way: $curl = curl_init("https://api.sandbox.paypal.com/v1/payments/payment/PAYID-LP73NDI44T29238WB1316137"); curl_setopt($curl, CURLOPT_POST, false); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_HEADER, false); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_HTTPHEADER, array( 'Authorization: Bearer ' . $accessToken, 'Accept: application/json', 'Content-Type: application/json' )); $response = curl_exec($curl);
            – Tamar Danielyan
            Nov 29 at 12:08












          • if I have errors in "create" or "execute" functions, then why I get approved. I think maybe curl_setopt($curl, CURLOPT_POST, false); have to get true value, but then I get error "Failed to load resource: the server responded with a status of 500 () props.js:246 Uncaught Error: Request to post aylkerp.am/successful-payment-post-notify failed with 500 error. Correlation id: unknown { "message": "Server Error" } at XMLHttpRequest.<anonymous> (http.js:114)"; <aylkerp.am/successful-payment-post-notify> is my EXECUTE_URL: url in "paypal.Button.render" function
            – Tamar Danielyan
            Nov 29 at 12:19












          • If you're getting approved, and not an error back from the API, then it's working. If you aren't seeing the money then you must be looking at the wrong account. Make sure you're signed in to the same sandbox account that you pulled the API credentials from as the seller account.
            – Drew Angell
            Nov 29 at 21:02
















          No, that doesn't help. I've added /execute too, now I get "state":"approved", but payment still doesn't made.
          – Tamar Danielyan
          Nov 29 at 10:12




          No, that doesn't help. I've added /execute too, now I get "state":"approved", but payment still doesn't made.
          – Tamar Danielyan
          Nov 29 at 10:12












          I've edited question, there is how the function looks like.
          – Tamar Danielyan
          Nov 29 at 11:37




          I've edited question, there is how the function looks like.
          – Tamar Danielyan
          Nov 29 at 11:37












          Maybe problem occures when I create payment? I create it in this way: $curl = curl_init("https://api.sandbox.paypal.com/v1/payments/payment/PAYID-LP73NDI44T29238WB1316137"); curl_setopt($curl, CURLOPT_POST, false); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_HEADER, false); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_HTTPHEADER, array( 'Authorization: Bearer ' . $accessToken, 'Accept: application/json', 'Content-Type: application/json' )); $response = curl_exec($curl);
          – Tamar Danielyan
          Nov 29 at 12:08






          Maybe problem occures when I create payment? I create it in this way: $curl = curl_init("https://api.sandbox.paypal.com/v1/payments/payment/PAYID-LP73NDI44T29238WB1316137"); curl_setopt($curl, CURLOPT_POST, false); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_HEADER, false); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_HTTPHEADER, array( 'Authorization: Bearer ' . $accessToken, 'Accept: application/json', 'Content-Type: application/json' )); $response = curl_exec($curl);
          – Tamar Danielyan
          Nov 29 at 12:08














          if I have errors in "create" or "execute" functions, then why I get approved. I think maybe curl_setopt($curl, CURLOPT_POST, false); have to get true value, but then I get error "Failed to load resource: the server responded with a status of 500 () props.js:246 Uncaught Error: Request to post aylkerp.am/successful-payment-post-notify failed with 500 error. Correlation id: unknown { "message": "Server Error" } at XMLHttpRequest.<anonymous> (http.js:114)"; <aylkerp.am/successful-payment-post-notify> is my EXECUTE_URL: url in "paypal.Button.render" function
          – Tamar Danielyan
          Nov 29 at 12:19






          if I have errors in "create" or "execute" functions, then why I get approved. I think maybe curl_setopt($curl, CURLOPT_POST, false); have to get true value, but then I get error "Failed to load resource: the server responded with a status of 500 () props.js:246 Uncaught Error: Request to post aylkerp.am/successful-payment-post-notify failed with 500 error. Correlation id: unknown { "message": "Server Error" } at XMLHttpRequest.<anonymous> (http.js:114)"; <aylkerp.am/successful-payment-post-notify> is my EXECUTE_URL: url in "paypal.Button.render" function
          – Tamar Danielyan
          Nov 29 at 12:19














          If you're getting approved, and not an error back from the API, then it's working. If you aren't seeing the money then you must be looking at the wrong account. Make sure you're signed in to the same sandbox account that you pulled the API credentials from as the seller account.
          – Drew Angell
          Nov 29 at 21:02




          If you're getting approved, and not an error back from the API, then it's working. If you aren't seeing the money then you must be looking at the wrong account. Make sure you're signed in to the same sandbox account that you pulled the API credentials from as the seller account.
          – Drew Angell
          Nov 29 at 21:02


















          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.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • 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%2f53427577%2fpaypal-transaction-to-me-is-verified-by-api-but-my-account-balance-is-0-00%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

          Sphinx de Gizeh

          Dijon

          Langue