For cycle checks array with URL images but does not detect which images do exist Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!How do the PHP equality (== double equals) and identity (=== triple equals) comparison operators differ?PHP code for anti hotlinkingHow to check if PHP array is associative or sequential?How do I check if an array includes an object in JavaScript?How do you check if a variable is an array in JavaScript?Checking if a key exists in a JavaScript object?Check if a value exists in an array in RubyHow to check if an object is an array?How much bandwidth do I generate to destination web site with my curl code?ABBYY OCR SDK: I am trying a sample script for recognizing business cards but not getting any outputcURL not working sometimes and gives empty resulthow can i check if RESTAPI is down using curl php

lm and glm function in R

Reflections in a Square

“Since the train was delayed for more than an hour, passengers were given a full refund.” – Why is there no article before “passengers”?

How to get a single big right brace?

Short story about an alien named Ushtu(?) coming from a future Earth, when ours was destroyed by a nuclear explosion

A German immigrant ancestor has a "Registration Affidavit of Alien Enemy" on file. What does that mean exactly?

xkeyval -- read keys from file

How is an IPA symbol that lacks a name (e.g. ɲ) called?

Network questions

Does GDPR cover the collection of data by websites that crawl the web and resell user data

What is the definining line between a helicopter and a drone a person can ride in?

Is Vivien of the Wilds + Wilderness Reclimation a competitive combo?

What's the connection between Mr. Nancy and fried chicken?

Lights are flickering on and off after accidentally bumping into light switch

How to ask rejected full-time candidates to apply to teach individual courses?

tabularx column has extra padding at right?

Do chord progressions usually move by fifths?

What could prevent concentrated local exploration?

2 sample t test for sample sizes - 30,000 and 150,000

What kind of capacitor is this in the image?

Like totally amazing interchangeable sister outfit accessory swapping or whatever

How to charge percentage of transaction cost?

Does Prince Arnaud cause someone holding the Princess to lose?

What is the ongoing value of the Kanban board to the developers as opposed to management



For cycle checks array with URL images but does not detect which images do exist



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Data science time! April 2019 and salary with experience
The Ask Question Wizard is Live!How do the PHP equality (== double equals) and identity (=== triple equals) comparison operators differ?PHP code for anti hotlinkingHow to check if PHP array is associative or sequential?How do I check if an array includes an object in JavaScript?How do you check if a variable is an array in JavaScript?Checking if a key exists in a JavaScript object?Check if a value exists in an array in RubyHow to check if an object is an array?How much bandwidth do I generate to destination web site with my curl code?ABBYY OCR SDK: I am trying a sample script for recognizing business cards but not getting any outputcURL not working sometimes and gives empty resulthow can i check if RESTAPI is down using curl php



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








0















I have a function which runs through an array of URL images, taken from my database, to see if they exist in order to upload images which do exist to another place. The application is in PHP using CakePhp 2.x and I'm using a function which I found on another Stackoverflow question.



The function which checks if the image exist is the next:



public function checkImageContentType($url) 
return (@fopen($url,"r")==true);



But I've also test the next code:



function checkRemoteFile($url) 
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
// don't download content
curl_setopt($ch, CURLOPT_NOBODY, 1);
curl_setopt($ch, CURLOPT_FAILONERROR, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

$result = curl_exec($ch);
curl_close($ch);
if($result !== FALSE)

return true;

else

return false;




Its worth mentioning the images are from a remote domain so I can not use file_exist function. The code in question which runs the for of the array of url images and calls the functions to check if the images exist is the next:



foreach($inventories as $inventory) 
if (!($this->checkImageContentType($inventory['Inventory']['imgsrc1'])))
echo "<p>Pass: ".$inventory['Inventory']['sku']." <a href='". $inventory['Inventory']['imgsrc1'] ."'>IMG Here</a> </p>";
continue;


echo "<p>Product SKU:".$inventory['Inventory']['sku']."</p>";

....




If the image exists it keeps on with the function to upload, if not it continues on with the next image in array. The only problem is this code is not detecting all images for some reason. It passes on over some images which do exists and detects only a few images, this happens randomly I'm not sure why. Any ideas what I'm doing wrong or what I could try to debug this?



EDIT:



I think I found the reason, its making to many calls to the other server, so it is sending me a 403 error. Is there a way to overcome this? I'm making many calls to the other server I think that is why the other server is preventing me from making any more calls.



EDIT 2:



Just to give a little more context, the images URL where stored on Shopify Files and they have a hot link protection in order to prevent many calls from a single server. So you cant check out that many links even if the links are 404s. And there is a cooldown where Shopify wont allow you to check any more Shopify URLs, hence the 403 error. Or at least that is what I think is happening. All I had to do was keep the request to a minimum and well expand the times of my app checking for the images url from Shopify. Maybe its not the best solution, but for now it was what I found out.



If someone knows how to bypass or workaround the HotLink Protection I would like to hear the ideas :P










share|improve this question






























    0















    I have a function which runs through an array of URL images, taken from my database, to see if they exist in order to upload images which do exist to another place. The application is in PHP using CakePhp 2.x and I'm using a function which I found on another Stackoverflow question.



    The function which checks if the image exist is the next:



    public function checkImageContentType($url) 
    return (@fopen($url,"r")==true);



    But I've also test the next code:



    function checkRemoteFile($url) 
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL,$url);
    // don't download content
    curl_setopt($ch, CURLOPT_NOBODY, 1);
    curl_setopt($ch, CURLOPT_FAILONERROR, 1);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

    $result = curl_exec($ch);
    curl_close($ch);
    if($result !== FALSE)

    return true;

    else

    return false;




    Its worth mentioning the images are from a remote domain so I can not use file_exist function. The code in question which runs the for of the array of url images and calls the functions to check if the images exist is the next:



    foreach($inventories as $inventory) 
    if (!($this->checkImageContentType($inventory['Inventory']['imgsrc1'])))
    echo "<p>Pass: ".$inventory['Inventory']['sku']." <a href='". $inventory['Inventory']['imgsrc1'] ."'>IMG Here</a> </p>";
    continue;


    echo "<p>Product SKU:".$inventory['Inventory']['sku']."</p>";

    ....




    If the image exists it keeps on with the function to upload, if not it continues on with the next image in array. The only problem is this code is not detecting all images for some reason. It passes on over some images which do exists and detects only a few images, this happens randomly I'm not sure why. Any ideas what I'm doing wrong or what I could try to debug this?



    EDIT:



    I think I found the reason, its making to many calls to the other server, so it is sending me a 403 error. Is there a way to overcome this? I'm making many calls to the other server I think that is why the other server is preventing me from making any more calls.



    EDIT 2:



    Just to give a little more context, the images URL where stored on Shopify Files and they have a hot link protection in order to prevent many calls from a single server. So you cant check out that many links even if the links are 404s. And there is a cooldown where Shopify wont allow you to check any more Shopify URLs, hence the 403 error. Or at least that is what I think is happening. All I had to do was keep the request to a minimum and well expand the times of my app checking for the images url from Shopify. Maybe its not the best solution, but for now it was what I found out.



    If someone knows how to bypass or workaround the HotLink Protection I would like to hear the ideas :P










    share|improve this question


























      0












      0








      0








      I have a function which runs through an array of URL images, taken from my database, to see if they exist in order to upload images which do exist to another place. The application is in PHP using CakePhp 2.x and I'm using a function which I found on another Stackoverflow question.



      The function which checks if the image exist is the next:



      public function checkImageContentType($url) 
      return (@fopen($url,"r")==true);



      But I've also test the next code:



      function checkRemoteFile($url) 
      $ch = curl_init();
      curl_setopt($ch, CURLOPT_URL,$url);
      // don't download content
      curl_setopt($ch, CURLOPT_NOBODY, 1);
      curl_setopt($ch, CURLOPT_FAILONERROR, 1);
      curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

      $result = curl_exec($ch);
      curl_close($ch);
      if($result !== FALSE)

      return true;

      else

      return false;




      Its worth mentioning the images are from a remote domain so I can not use file_exist function. The code in question which runs the for of the array of url images and calls the functions to check if the images exist is the next:



      foreach($inventories as $inventory) 
      if (!($this->checkImageContentType($inventory['Inventory']['imgsrc1'])))
      echo "<p>Pass: ".$inventory['Inventory']['sku']." <a href='". $inventory['Inventory']['imgsrc1'] ."'>IMG Here</a> </p>";
      continue;


      echo "<p>Product SKU:".$inventory['Inventory']['sku']."</p>";

      ....




      If the image exists it keeps on with the function to upload, if not it continues on with the next image in array. The only problem is this code is not detecting all images for some reason. It passes on over some images which do exists and detects only a few images, this happens randomly I'm not sure why. Any ideas what I'm doing wrong or what I could try to debug this?



      EDIT:



      I think I found the reason, its making to many calls to the other server, so it is sending me a 403 error. Is there a way to overcome this? I'm making many calls to the other server I think that is why the other server is preventing me from making any more calls.



      EDIT 2:



      Just to give a little more context, the images URL where stored on Shopify Files and they have a hot link protection in order to prevent many calls from a single server. So you cant check out that many links even if the links are 404s. And there is a cooldown where Shopify wont allow you to check any more Shopify URLs, hence the 403 error. Or at least that is what I think is happening. All I had to do was keep the request to a minimum and well expand the times of my app checking for the images url from Shopify. Maybe its not the best solution, but for now it was what I found out.



      If someone knows how to bypass or workaround the HotLink Protection I would like to hear the ideas :P










      share|improve this question
















      I have a function which runs through an array of URL images, taken from my database, to see if they exist in order to upload images which do exist to another place. The application is in PHP using CakePhp 2.x and I'm using a function which I found on another Stackoverflow question.



      The function which checks if the image exist is the next:



      public function checkImageContentType($url) 
      return (@fopen($url,"r")==true);



      But I've also test the next code:



      function checkRemoteFile($url) 
      $ch = curl_init();
      curl_setopt($ch, CURLOPT_URL,$url);
      // don't download content
      curl_setopt($ch, CURLOPT_NOBODY, 1);
      curl_setopt($ch, CURLOPT_FAILONERROR, 1);
      curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

      $result = curl_exec($ch);
      curl_close($ch);
      if($result !== FALSE)

      return true;

      else

      return false;




      Its worth mentioning the images are from a remote domain so I can not use file_exist function. The code in question which runs the for of the array of url images and calls the functions to check if the images exist is the next:



      foreach($inventories as $inventory) 
      if (!($this->checkImageContentType($inventory['Inventory']['imgsrc1'])))
      echo "<p>Pass: ".$inventory['Inventory']['sku']." <a href='". $inventory['Inventory']['imgsrc1'] ."'>IMG Here</a> </p>";
      continue;


      echo "<p>Product SKU:".$inventory['Inventory']['sku']."</p>";

      ....




      If the image exists it keeps on with the function to upload, if not it continues on with the next image in array. The only problem is this code is not detecting all images for some reason. It passes on over some images which do exists and detects only a few images, this happens randomly I'm not sure why. Any ideas what I'm doing wrong or what I could try to debug this?



      EDIT:



      I think I found the reason, its making to many calls to the other server, so it is sending me a 403 error. Is there a way to overcome this? I'm making many calls to the other server I think that is why the other server is preventing me from making any more calls.



      EDIT 2:



      Just to give a little more context, the images URL where stored on Shopify Files and they have a hot link protection in order to prevent many calls from a single server. So you cant check out that many links even if the links are 404s. And there is a cooldown where Shopify wont allow you to check any more Shopify URLs, hence the 403 error. Or at least that is what I think is happening. All I had to do was keep the request to a minimum and well expand the times of my app checking for the images url from Shopify. Maybe its not the best solution, but for now it was what I found out.



      If someone knows how to bypass or workaround the HotLink Protection I would like to hear the ideas :P







      php arrays curl cakephp shopify






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Apr 4 at 20:39







      Jurgen Feuchter

















      asked Mar 9 at 2:21









      Jurgen FeuchterJurgen Feuchter

      3091319




      3091319






















          1 Answer
          1






          active

          oldest

          votes


















          0














          I assume your issue is with your checkImageContentType() method. You are using not so clever @ error suppressor which who knows what fopen($url,"r") return true/false but with suppressor will method return void?



          Then you are using loose comparison using ==, you should check for identical values to be sure you are getting expected result using ===.



          Also, please check if image does not exist, you don't get 404 server page response, that you might confuse as image response. Some servers might have hot linking protections.



          You can always use libraries like guzzlehttp/guzzle to not re-invent the wheel, and make your life a bit easier.






          share|improve this answer























          • Suppose I'm using the "checkRemoteFile" function, with that one I'm checking for each image URL using CURL but most URLs come out false I'm not even sure why. You think its the hot linking protection? The URLs in question are from Shopify Files

            – Jurgen Feuchter
            Mar 9 at 3:06












          • If most are returning, then hot linking is probably not an issue. But you should check contents of those files. Test your file array by converting them into data image, and check what exactly you are seeing.

            – HelpNeeder
            Mar 9 at 3:19












          • Most are returning false, even if I run 1 url which I know the image exists it returns false first. Im not even sure why anymore.

            – Jurgen Feuchter
            Mar 9 at 3:21











          • Check if url structure is correct; server require https/http; your server require SSL tunel; server can send/receive files of this file; are urls encoded; please debug your image array.

            – HelpNeeder
            Mar 9 at 3:36











          • The server has SSL, but still the calls are not working.

            – Jurgen Feuchter
            Mar 11 at 2:59











          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%2f55073389%2ffor-cycle-checks-array-with-url-images-but-does-not-detect-which-images-do-exist%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














          I assume your issue is with your checkImageContentType() method. You are using not so clever @ error suppressor which who knows what fopen($url,"r") return true/false but with suppressor will method return void?



          Then you are using loose comparison using ==, you should check for identical values to be sure you are getting expected result using ===.



          Also, please check if image does not exist, you don't get 404 server page response, that you might confuse as image response. Some servers might have hot linking protections.



          You can always use libraries like guzzlehttp/guzzle to not re-invent the wheel, and make your life a bit easier.






          share|improve this answer























          • Suppose I'm using the "checkRemoteFile" function, with that one I'm checking for each image URL using CURL but most URLs come out false I'm not even sure why. You think its the hot linking protection? The URLs in question are from Shopify Files

            – Jurgen Feuchter
            Mar 9 at 3:06












          • If most are returning, then hot linking is probably not an issue. But you should check contents of those files. Test your file array by converting them into data image, and check what exactly you are seeing.

            – HelpNeeder
            Mar 9 at 3:19












          • Most are returning false, even if I run 1 url which I know the image exists it returns false first. Im not even sure why anymore.

            – Jurgen Feuchter
            Mar 9 at 3:21











          • Check if url structure is correct; server require https/http; your server require SSL tunel; server can send/receive files of this file; are urls encoded; please debug your image array.

            – HelpNeeder
            Mar 9 at 3:36











          • The server has SSL, but still the calls are not working.

            – Jurgen Feuchter
            Mar 11 at 2:59















          0














          I assume your issue is with your checkImageContentType() method. You are using not so clever @ error suppressor which who knows what fopen($url,"r") return true/false but with suppressor will method return void?



          Then you are using loose comparison using ==, you should check for identical values to be sure you are getting expected result using ===.



          Also, please check if image does not exist, you don't get 404 server page response, that you might confuse as image response. Some servers might have hot linking protections.



          You can always use libraries like guzzlehttp/guzzle to not re-invent the wheel, and make your life a bit easier.






          share|improve this answer























          • Suppose I'm using the "checkRemoteFile" function, with that one I'm checking for each image URL using CURL but most URLs come out false I'm not even sure why. You think its the hot linking protection? The URLs in question are from Shopify Files

            – Jurgen Feuchter
            Mar 9 at 3:06












          • If most are returning, then hot linking is probably not an issue. But you should check contents of those files. Test your file array by converting them into data image, and check what exactly you are seeing.

            – HelpNeeder
            Mar 9 at 3:19












          • Most are returning false, even if I run 1 url which I know the image exists it returns false first. Im not even sure why anymore.

            – Jurgen Feuchter
            Mar 9 at 3:21











          • Check if url structure is correct; server require https/http; your server require SSL tunel; server can send/receive files of this file; are urls encoded; please debug your image array.

            – HelpNeeder
            Mar 9 at 3:36











          • The server has SSL, but still the calls are not working.

            – Jurgen Feuchter
            Mar 11 at 2:59













          0












          0








          0







          I assume your issue is with your checkImageContentType() method. You are using not so clever @ error suppressor which who knows what fopen($url,"r") return true/false but with suppressor will method return void?



          Then you are using loose comparison using ==, you should check for identical values to be sure you are getting expected result using ===.



          Also, please check if image does not exist, you don't get 404 server page response, that you might confuse as image response. Some servers might have hot linking protections.



          You can always use libraries like guzzlehttp/guzzle to not re-invent the wheel, and make your life a bit easier.






          share|improve this answer













          I assume your issue is with your checkImageContentType() method. You are using not so clever @ error suppressor which who knows what fopen($url,"r") return true/false but with suppressor will method return void?



          Then you are using loose comparison using ==, you should check for identical values to be sure you are getting expected result using ===.



          Also, please check if image does not exist, you don't get 404 server page response, that you might confuse as image response. Some servers might have hot linking protections.



          You can always use libraries like guzzlehttp/guzzle to not re-invent the wheel, and make your life a bit easier.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 9 at 2:51









          HelpNeederHelpNeeder

          3,2212070130




          3,2212070130












          • Suppose I'm using the "checkRemoteFile" function, with that one I'm checking for each image URL using CURL but most URLs come out false I'm not even sure why. You think its the hot linking protection? The URLs in question are from Shopify Files

            – Jurgen Feuchter
            Mar 9 at 3:06












          • If most are returning, then hot linking is probably not an issue. But you should check contents of those files. Test your file array by converting them into data image, and check what exactly you are seeing.

            – HelpNeeder
            Mar 9 at 3:19












          • Most are returning false, even if I run 1 url which I know the image exists it returns false first. Im not even sure why anymore.

            – Jurgen Feuchter
            Mar 9 at 3:21











          • Check if url structure is correct; server require https/http; your server require SSL tunel; server can send/receive files of this file; are urls encoded; please debug your image array.

            – HelpNeeder
            Mar 9 at 3:36











          • The server has SSL, but still the calls are not working.

            – Jurgen Feuchter
            Mar 11 at 2:59

















          • Suppose I'm using the "checkRemoteFile" function, with that one I'm checking for each image URL using CURL but most URLs come out false I'm not even sure why. You think its the hot linking protection? The URLs in question are from Shopify Files

            – Jurgen Feuchter
            Mar 9 at 3:06












          • If most are returning, then hot linking is probably not an issue. But you should check contents of those files. Test your file array by converting them into data image, and check what exactly you are seeing.

            – HelpNeeder
            Mar 9 at 3:19












          • Most are returning false, even if I run 1 url which I know the image exists it returns false first. Im not even sure why anymore.

            – Jurgen Feuchter
            Mar 9 at 3:21











          • Check if url structure is correct; server require https/http; your server require SSL tunel; server can send/receive files of this file; are urls encoded; please debug your image array.

            – HelpNeeder
            Mar 9 at 3:36











          • The server has SSL, but still the calls are not working.

            – Jurgen Feuchter
            Mar 11 at 2:59
















          Suppose I'm using the "checkRemoteFile" function, with that one I'm checking for each image URL using CURL but most URLs come out false I'm not even sure why. You think its the hot linking protection? The URLs in question are from Shopify Files

          – Jurgen Feuchter
          Mar 9 at 3:06






          Suppose I'm using the "checkRemoteFile" function, with that one I'm checking for each image URL using CURL but most URLs come out false I'm not even sure why. You think its the hot linking protection? The URLs in question are from Shopify Files

          – Jurgen Feuchter
          Mar 9 at 3:06














          If most are returning, then hot linking is probably not an issue. But you should check contents of those files. Test your file array by converting them into data image, and check what exactly you are seeing.

          – HelpNeeder
          Mar 9 at 3:19






          If most are returning, then hot linking is probably not an issue. But you should check contents of those files. Test your file array by converting them into data image, and check what exactly you are seeing.

          – HelpNeeder
          Mar 9 at 3:19














          Most are returning false, even if I run 1 url which I know the image exists it returns false first. Im not even sure why anymore.

          – Jurgen Feuchter
          Mar 9 at 3:21





          Most are returning false, even if I run 1 url which I know the image exists it returns false first. Im not even sure why anymore.

          – Jurgen Feuchter
          Mar 9 at 3:21













          Check if url structure is correct; server require https/http; your server require SSL tunel; server can send/receive files of this file; are urls encoded; please debug your image array.

          – HelpNeeder
          Mar 9 at 3:36





          Check if url structure is correct; server require https/http; your server require SSL tunel; server can send/receive files of this file; are urls encoded; please debug your image array.

          – HelpNeeder
          Mar 9 at 3:36













          The server has SSL, but still the calls are not working.

          – Jurgen Feuchter
          Mar 11 at 2:59





          The server has SSL, but still the calls are not working.

          – Jurgen Feuchter
          Mar 11 at 2:59



















          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%2f55073389%2ffor-cycle-checks-array-with-url-images-but-does-not-detect-which-images-do-exist%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

          AWS Lex not identifying response if by a variable The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) The Ask Question Wizard is Live! Data science time! April 2019 and salary with experienceEnforcing custom enumeration in AWS LEX for slot valuesHow to give response based on user response in Amazon Lex?Intercepting AWS Lambda Response to a AWS Lex QueryLex chat bot error: Reached second execution of fulfillment lambda on the same utteranceamazon lex showing invalid responseLambda response send back to Lex slot?Response card in Amazon lexAmazon Lex - Lambda response return HTML to botHow can I solve 424 (Failed Dependency) (python) obtained from Amazon lex?

          Алба-Юлія

          Захаров Федір Захарович