User Portlet User Portlet

Discussions
Greetings: I created a simple Wolfram Cloud API that Imports[] a URL and returns the Plaintext: ClearAll[urlScraperTest2] urlScraperTest2 = APIFunction[ {"url" -> "String"}, Import[#url, "Plaintext", CharacterEncoding...
Hi, I've created a very simple API that imports the "Plaintext" of a URL or a PDF. Here is my code: urlScraperTest = APIFunction[ {"url" -> "String"}, Import[#url, "Plaintext"] &]; And deployed it to the Wolfram Cloud: ...