Questions tagged [geturl]

geturl can refer to a specific function in a library, API or framework. Examples of geturl methods is found in cURL, Google Places and PowerBuilder. geturl can also refer to the concept of programmatically retrieving an url (or part of a url) from a string a other resource.

can refer to a specific function in a library, API or framework. Examples of methods is found in , and .

can also refer to the concept of programmatically retrieving an url (or part of a url) from a string a other resource.

143 questions
0
votes
0 answers

not getting the subject info or the current row information in body of the email when using google-apps script

I am having problems with getting the current row information to be included in my email message when the email address that I'm sending to is listed on another spreadsheet. It works when I define the email address within the script. I have 3…
0
votes
0 answers

Return URL when creating blob in Google Drive

I'm working with MIT App Inventor 2 and Google Sheets to build an app that submits photos to a Drive folder as part of an error report form. I've got the photo upload bit working through a custom Apps script by Tim AI2 that looks like this: function…
0
votes
1 answer

R: Reading a UCS-2 LE bom file from GitHub

I have a program which creates and stores files automatically on GitHub. An example is https://raw.githubusercontent.com/VIC-Laboratory-ExperimentalData/test/master/test-999-666.txt However, the files are coded on Dos/Windows machine with UCS-2 LE…
Denis Cousineau
  • 311
  • 4
  • 16
0
votes
2 answers

How to find URL of web page opened by clicking link?

My scenario is: I opened a webpage (it has different links) and clicked on a link randomly. Now I want to get the URL of that webpage opened. I searched a lot and found the same answer everywhere which I tried. driver.get(url) driver.current_url It…
Maha Waqar
  • 585
  • 1
  • 10
  • 24
0
votes
2 answers

Hide password in getURL function in R

I have been using R function getURL() to load data on RStudio from a remote FTP server. However, this requires having my username and password visible in the script. require("RCurl") getURL("ftp://directory/filename.txt", userpwd="user:pwd") Is…
user9467855
0
votes
0 answers

How to get URLs from Chrome

You can get the Chrome URL using uiautomation. However, Chrome UI menu is not visible on some PCs. Is there another way? UI Menu Success: UI Menu Failed: varPropAddr.bstrVal = SysAllocString(L"Address and search…
hhbae
  • 1
  • 1
0
votes
0 answers

"HTTP error 404" ---- a webpage does NOT allow to be read from R

I was wondering if anybody can solve this problem in R? I want to read the lines (get its content) from the following web-page using R functions such as readLines() , read_html(), getURL() , and etc.: …
Canada2015
  • 187
  • 1
  • 12
0
votes
0 answers

R: How to check if a file exist using sftp in a remote server

How to check if a file exist using sftp in Remote server using R. Out of 5 files, 2 are missing in the server. hence it reads first two files and then throw the following error: Error in function (type, msg, asError = TRUE) : Could not open…
LoopBloke
  • 15
  • 4
0
votes
1 answer

How to get urls of Firebase storage and save them in Arraylist Android

I have images on firebase storage like this and the images are uploaded from the firebase console so there is no way that I store the URLs before. I am wondering if there is any method to get the URLs and save them in an ArrayList. so I can use…
Usama Akram
  • 23
  • 1
  • 8
0
votes
0 answers

Accessing API using ajax

I have tried accessing url by the below method.The url consists of JSON data which needs to be parsed but got a Cross-Origin Request Blocked: error. $.ajax({ type: "GET", url: 'http://...', async:true, dataType : 'json', crossDomain:true, success:…
Spandana
  • 121
  • 1
  • 2
  • 13
0
votes
1 answer

Receiving SMS on Kannel but not able to forward it on URL

I have configured and connected an SMSC to receive SMS on Kannel properly. I am able to receive SMS successfully, as I can see from access logs, but not getting hit on my API. This is the configuration file : group = smsc smsc = smpp smsc-id =…
kadamb
  • 1,532
  • 3
  • 29
  • 55
0
votes
0 answers

getURL not working for one link (and it worked before)

I used getURL and htmlTreeParse to do webscraping with the following code: library(XML) library(rvest) library(httr) library(RCurl) url="https://www.restaurants.mcdonalds.fr/" page = htmlTreeParse(getURL(url),useInternal =…
John Smith
  • 1,604
  • 4
  • 18
  • 45
0
votes
2 answers

Counterpart to getURLVars() for simplifying vars

I am using this function to scrape my url and build variables from it: Read a page's GET URL variables and return them as an "associative array." Calling the function while at example.html?foo=asdf&bar=jkls sets map['foo']='asdf' and …
gooddadmike
  • 2,329
  • 4
  • 26
  • 48
0
votes
1 answer

How to create azure file storage SAS url(without azure libraries)?

My main target is to create a SAS url (without azure libraries)for file. I tried to create azure storage SAS with blob and everything worked correctly. When I try to do the same in File i got an error. This is my code: string azAccName =…
kostas
  • 779
  • 4
  • 13
  • 20
0
votes
1 answer

Using URL from email merge to populate web form text box using Java Script

I'm using MailChimp to merge fields into a URL directing people to complete a form on my site. I want to prepopulate the text boxes with the information from the URL. ex: http://www.sitename.com/page?fname=John&lname=Smith&email=jsmith@email.com I'm…