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
1 answer

Get url path to url links (PHP)

For get img url I use this on main sites But for sub sites I need to use this How I can get url…
Lucas
  • 39
  • 1
  • 10
0
votes
1 answer

RCurl SSH public key authentication failed: Callback returned error

I need to get config file from the Linux server that is authenticated using ssh keys. I am stuck with "Callback returned error" message. conf = scp(host="10.10.10.10", path="/home/admin/codebase/config.txt", user="admin", keypasswd = "",…
EaswerC
  • 11
  • 5
0
votes
2 answers

Binary output from getURIAsynchronous from RCurl

depending on the API that I'm calling I receive different object types from getURIAsynchronous. When I query google api I get vector of strings but in case of Route360 the response is returned binary raw. Can I somehow force this function to receive…
ptero
  • 11
  • 2
0
votes
1 answer

How to get a specific URL of Google Sheet automatically

I would like to get Google Sheet's URL automatically when there is a specific no. in row A and a sheet name provided as prerequisites. If there is 15106 in row A and a sheet name --> See this I would like to display it somewhere on the same line…
0
votes
0 answers

R - JSON Returned from RCurl::getURL has Special Characters that make it invalid with fromJSON

How can make sure that the result of my getURL() call is properly formatted to be parsed using from JSON? Details If I take the string for api URL and paste that into Chrome, then copy and paste out the resulting JSON, RJSONIO::fromJSON() will…
0
votes
0 answers

How get current url in Microsoft Edge?

Since the official release of Microsoft Edge, Ialready saw several examples about how get active url from Microsoft Edge, mainly in C#.NET code. But until now don't have saw no one have done a Delphi version for this. Now I'm here exactly for know…
user3812497
0
votes
2 answers

Is flash's geturl(...) spiderable by google?

If I made a homepage with an embedded .swf which had buttons that linked to other html pages on my website using the getUrl() function, would those links be spiderable by google? Or should I also put in text links outside of the .swf (which would…
tom
  • 41
  • 4
0
votes
1 answer

multiple if in if with get url

i want to select from database by url and for this i do this if: if (isset($_GET['class']) == 'dw') { $query = mssql_query("select * from [WebShop] where [category]='".secure($string)."' and [dw] > 0 order by credits asc"); } if…
EzraMod
  • 17
  • 1
  • 5
0
votes
1 answer

flash geturl in new window with scrollbars=yes in Action Script

Can some one help me to do this effects in flash? I have this code for getURL but it's opening in newtab. What I need is it should be open in new window. on(release){getURL("http://www.google.com", "_blank");} I want something like this. Thanks…
0
votes
1 answer

Calling WebView.getUrl() from preference view returns null

I'm trying to get the current URL of the WebView on my main activity and display it as a TextView for the user in a custom DialogPreference. My difficulty right now is every time I call it, it get a null returned. Here's my code for the custom…
0
votes
1 answer

How to get and print values properly form a given URL parameter

I have this link with parameter: http://example.com/article?id=571&id=550&id=276 I wish to get all the id values, form an Array and output to a field, I have tried several ways but none worked, anyone can help ? Thanks if (isset($_GET['id'])){ …
Adamtan
  • 253
  • 1
  • 2
  • 15
0
votes
3 answers

getUrl using Java

Is there a way of getting the websites absolute URL (http://www.domain.com/) using Java? because I've googled a bit but I only come across with having to make 2 or 3 classes to create that function =/ Update: The thing is I am trying to create a…
Tsundoku
  • 9,104
  • 29
  • 93
  • 127
0
votes
1 answer

PHP Explode and Get_Url: Not Showing up the URL

its a little bit hard to understand. in the header.php i have this code: I get the ID with this Variable $link --> 12345678 and with $url i get the full link from the functions.php in the functions.php…
elmaso
  • 193
  • 1
  • 2
  • 14
0
votes
2 answers

RCurl getURLContent detect content type through final redirect

This is a followup question to RCurl getURL with loop - link to a PDF kills looping : I have the following getURL command: require(RCurl) #set a bunch of options for curl options(RCurlOptions = list(cainfo = system.file("CurlSSL", "cacert.pem",…
SOConnell
  • 793
  • 1
  • 8
  • 27
0
votes
1 answer

How to merge 2 scripts (read URL and output array)?

I have 2 scripts that I cannot seem to figure out how to merge. In script #1 - I read a URL and output the returned value(s). Usually just one. In script #2 - I write the results from one or more array(s) into lists. SCRIPT #1: function…