Google Maps API V 3 Referer Configuration - google-maps

hoping you are ok.
If you have the following URL:
http://jeanpaulruizvallejo.com//pruebas/personales/plantillas/alpha-01/templatesViewer.php?cdPlantilla=1
https://jeanpaulruizvallejo.com//pruebas/personales/plantillas/alpha-01/templatesViewer.php?cdPlantilla=1
How should you configure it in the Google APIs Console?
Have tryied several configurations but without success.
Any ideas are welcome.
Thanks.

ok, this seems to be working:
http://jeanpaulruizvallejo.com/pruebas/personales/plantillas/*
https://jeanpaulruizvallejo.com/pruebas/personales/plantillas/*
http://jeanpaulruizvallejo.com/pruebas/personales/plantillas/alpha-01/*
https://jeanpaulruizvallejo.com/pruebas/personales/plantillas/alpha-01/*
http://jeanpaulruizvallejo.com//pruebas/personales/plantillas/alpha-01/templatesViewer.php?cdPlantilla=*
https://jeanpaulruizvallejo.com//pruebas/personales/plantillas/alpha-01/templatesViewer.php?cdPlantilla=*
Thanks anyway :)

Related

What does MissingOrInvalidParts mean? Autodesk Forge API

I am following this tutorial: https://forge.autodesk.com/en/docs/model-derivative/v2/tutorials/xtract-metadata/task2-upload_source_file_to_oss/
https://i.stack.imgur.com/7k6P9.png
I am getting that error ^ and the size of my object is still 1kb when I try downloading it, so it never finalized.
Any suggestions? Better tutorials to follow for Model Derivative API?
Thanks
We do have other tutorials like https://learnforge.autodesk.io/#/tutorials/viewmodels
and also tools like https://oss-manager.autodesk.io
You can try those I believe.

alipay intergration page not found

Anyone having expierience with the integration of Alipay?
I tried the method on the following page:
https://globalprod.alipay.com/order/integrationGuide.htm
But after editing my hostfile I get an "Server not found" on the following URL:
https://excashier.alipay.net/standard/auth.htm?auth_order_id=exc_2986bbacc22f46a7bca423e396777f37&_cache_context_token=FSGDdsr6ZgMVHOn14Ym6akIeYBGUZma4
Anyone have an idea?
greets
Try add in your hosts file
115.124.16.59 mapi.alipay.net excashier.alipay.net

SocketTimeOutException for Docs Api

I am using Google Document AclFeed APi to get the list of users to whom the document is shared. This is the code I am using
AclFeed aclFeed = docsService.getFeed(new URL("https://docs.google.com/feeds/default/private/full/file%3A"+fileId+"/acl"), AclFeed.class);//No I18N
Until last week everything was working fine , but from past two days I am getting the SocketTimeOutException for many requests...Is anyone else facing this issue? Any help will be grateful..
TIA,
VijayRaj
It happens a lot. What is your timeout set to? As an example the default on AppEngine is 5s which is way to low.

HTML5 geolocation demo not working

I'm using this example to test geolocation API http://www.w3schools.com/html/tryit.asp?filename=tryhtml5_geolocation_error
But, I always get Location information is unavailable. message. I tested it on different browsers, same problem. I have geolocation enabled in browser.
Also, I tried uploading this to a local server (XAMPP), but problem remains (same error code).
What am I doing wrong here, its taking me hours now?...I appreciate any help on this, thank you.
EDIT: When I try to locate myself using this service http://www.hostip.info/index.html its giving me error message ... actually we haven't a clue.. When I type in some random IP address, works perfect. Whats going on here?

Does SWFJunkie Tweetr's PHP Proxy still work?

I've recently been asked to help support a system which uses the PHP Proxy provided by SWFJunkie. In following the proxy's install steps I get to Step 4 at which point I get no results. I've tried hosting on Apache and IIS, have confirmed that URL rewrites work correctly on both platforms and that CURL is correctly installed, and have ensured there are no firewalls blocking my requests.
In researching this issue I've seen that Twitter have been changing their API rules (with more changes set to take place in March next year). The last activity I can see on the Proxy project was back in 2010, after which it seems to have gone dead. Before I put in more effort trying to get this to work I thought I'd ask - is anyone else currently using this / do you have it working?
If you have it working I'd welcome any tips / advice you have also, but mainly I just want to know in advance whether this utility still works in order to justify spending time on it.
Thanks in advance.
the proxy does still work, but I had to tweak the code a little.
Thanks to #MikeHayes for the solution: Twitter OAUTH - returns response code of "0"
For anyone else having this issue, the quick fix is to update Tweetr.php. Find the code matching what's below & insert the additional (commented) line on the end.
$opt[CURLOPT_URL] = $twitterURL;
$opt[CURLOPT_USERAGENT] = $this->userAgent;
$opt[CURLOPT_RETURNTRANSFER] = true;
$opt[CURLOPT_TIMEOUT] = 60;
//BEGIN UPDATED CODE
$opt[CURLOPT_SSL_VERIFYPEER] = false;
//END UPDATED CODE
Thanks again to Mike & good luck to anyone else currently having this issue.