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
1
vote
0 answers

swf banner hosted on domain A does not geturl when embedded on domain B

I want to host swf banner ads and allow others to embed them without them having to upload a copy of the swf to their webserver. The problem is the link on the swf, which doesn't work if the swf is embedded on a page on another domain. So swf in …
1
vote
0 answers

getURL, parsing web-site with german special characters

I am using getURL() and htmlParse() - how can I make web-site content with special characters to be displayed properly? library(RCurl); library(XML) script <- getURL("http://www.floraweb.de/pflanzenarten/foto.xsql?suchnr=814") …
Kay
  • 2,702
  • 6
  • 32
  • 48
0
votes
2 answers

GetURLSegments return false on List (document library) URL

GetURLSegments method of the SharePoint SiteData web service return false when passed the address of a document library. GetURLSegments return the following for the relative URL's: FALSE - http://sharepoint.testurl.com/site/subsite/doclibrary TRUE -…
JD Stuart
  • 547
  • 1
  • 3
  • 13
0
votes
2 answers

InternetReadFile get specificity line

i need help about getting a fist line from a web page, found a little script working with ipchicken.com. but i connot run it with me web script , posting the original code becouse i was mad about all things ... for that! i search for that here but…
01001110
  • 1
  • 1
0
votes
2 answers

How do I use a question mark in Actionscript 2.0 with getURL function?

Actionsctipt code: on(press) { getURL(escape("address.html?0")); } This works absolutely fine in Internet Explorer but in Chrome in the question mark is obviously made into "%3F". Any ideas how I can stop this from happening and still keep it…
Ryan Smith
  • 1,255
  • 2
  • 13
  • 16
0
votes
1 answer

android onclick method want image path

I display image from the web in my application. It is running perfectly My Question is : what is method,function to take current image URL when I click on image.? (I passed url as string for display). I used this method: private String…
NovusMobile
  • 1,813
  • 2
  • 21
  • 48
0
votes
1 answer

how to program a web browser in java blackberry

I need to know how to program a web browser in java blackberry; I don't know how start with this; maybe can start by put one panel but I don't know what else do.
0
votes
2 answers

return a php incremented string as a mysql snippet

I have a search get variable that can contain multiple words which are space deliminated. I have used the following to script to grab the url variable. Notice for the example I have just used a string for simplicity. What I have tried to do is…
user1093405
  • 41
  • 1
  • 2
  • 7
0
votes
1 answer

How to get current url in handlebars

i have a function getQuantityValueFromURL in helpers getQuantityValueFromURL: (url) => { const currentURL = new URL(url); const urlParams = new URLSearchParams(currentURL.search); return urlParams.get('quantity'); } how can i pass the…
Lamey
  • 1
0
votes
0 answers

How to get google chrome current URL using react

Here's sample code useEffect(() => { // eslint-disable-next-line no-undef chrome.tabs.query({ active: true, currentWindow: true }, (tabs) => { setCurrentUrl(tabs[0].url); }); }, []); I could get the current URL using about code
kkg
  • 1
  • 2
0
votes
0 answers

Ansible get_url behind Proxy requirements

I am trying to download various artefacts for confluent version using get_url module. I am behind a proxy and below is my playbook. I have to put in a proxy information for one of the downloads, but not for other. Trying to find out how do I…
adbdkb
  • 1,897
  • 6
  • 37
  • 66
0
votes
0 answers

I want a clean URL but i cannot GET string on the other page. I am using preg_replace to remove spaces with -

i want to send id and post caption through my page to the post page. When i try to GET id only, it works but when i try to get caption it does not work. can someone please help? It's been many days but cannnot get rid of this error. Thank…
0
votes
1 answer

Google Apps Script - ScriptApp.getService().getUrl() not working when included

I have made a sidnav for this webapp and used the method to have it on Multiple pages. Everything is loading correctly except for the ScriptApp.getService().getUrl(). Instead of getting the URL, it is just returning it as text Instead of this The…
0
votes
2 answers

How to add current user id to the axios.get request?

how can I add current user id to the axios.get request url in the front end code? here are my codes; backend: urls.py urlpatterns = [ path('/', UserDetail.as_view()), ] and views.py class UserDetail(APIView): permission_classes =…
MatthewJs
  • 1
  • 2
0
votes
0 answers

error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version while using getURL()

When I try using getURL() in the following way, I get an error: library(RCurl) getURL("https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?retmode=xml&db=pubmed&sort=pub+date&api_key=94fb5e3a815482d7c32927d002fb8f45e308&id=24190502") The…
iron captain
  • 1
  • 1
  • 1