AdobeXD-maps icon indicating copy to clipboard operation
AdobeXD-maps copied to clipboard

Can't generate map

Open MarcinRaczkowski opened this issue 4 years ago • 37 comments

Error: Request had an error:${req.status}

MarcinRaczkowski avatar Oct 02 '19 08:10 MarcinRaczkowski

Error: Request had an error:${req.status}

I'm having the same problem.

raditya26 avatar Oct 02 '19 11:10 raditya26

same problem here as well. any solutions?

AnilNatarajan avatar Oct 03 '19 10:10 AnilNatarajan

I am having the same porblem

alc0der avatar Oct 03 '19 11:10 alc0der

I have the same problem today. The message appears: "Error - Request had an erros: ${req.status}"

I'm not finding solutions :(

daniellerivi avatar Oct 04 '19 01:10 daniellerivi

This is a general problem with the Google API. In the plugin code. You need to wait for the plugin owner to fix it.

Let's hope you fix it as soon as possible!

daniellerivi avatar Oct 04 '19 01:10 daniellerivi

So basically the deal is this. It looks like the API key was invalidated, or something else.

if you go to https://developers.google.com/places/web-service/get-api-key you can request your own google maps api key.

Then you can update the plugin apikeys.json file which is located here:

~/Library/Application Support/Adobe/Adobe XD/plugins/

It's located in one of the directories. Edit the file and replace the key with the one you obtain from google and then it works like a champ.

There's nothing wrong with the app, it just doesn't support using his shared key. It probably shouldn't have been shared.

Hope this helps.

bkbonner avatar Oct 04 '19 17:10 bkbonner

Not working for me either

aimanfakia avatar Oct 04 '19 20:10 aimanfakia

@bkbonner I've gone into my apiKeys.json file, then replaced their API key with my own. It seems the same error persists, unfortunately. Perhaps I am doing something wrong?

skylarcheung avatar Oct 05 '19 17:10 skylarcheung

From this code snippet found in <~/Library/Application Support/Adobe/Adobe XD/plugins/.../main.js>, it seems you need the Maps Static API.

const url = "https://maps.googleapis.com/maps/api/staticmap?" +
            "center=" + encodeURIComponent(inputValues.location) +
            "&zoom=" + encodeURIComponent(inputValues.zoom) +
            "&size=" + encodeURIComponent(width) + "x" + encodeURIComponent(height) +
            "&scale=2" +
            "&maptype=" + encodeURIComponent(inputValues.mapType) +
            (inputValues.locationPin ? ("&markers=color:red%7C" + encodeURIComponent(inputValues.location)): "") +
            mapStyles +
            "&key=" + encodeURIComponent(apiKey);
  1. Create a new project/use an existing GCP project
  2. Go to the navigation menu on the top left and scroll down to find 'Google Maps'
  3. On the left pane, click on 'APIs'
  4. Find 'Maps Static API' in the 'Additional APIs Table' and click on it
  5. Hit Enable

MAKE SURE BILLING IS ENABLED

Pricing shouldn't be an issue if you are not going over 100,000 request. It starts to bill after $200.00 of requests ($2.00 per 1,000 request).

I would suggest limiting your api & securing it.

More information on billing here.

EDITED: Fixed path, '...' should be the plugin folder, for example 'e1e8f866'.

AceGabrielFigueroa avatar Oct 06 '19 19:10 AceGabrielFigueroa

Hi all,

I enabled a Map Static API with a new API KEY for Google MAPS. however still the same error.

Any news about this issue?

Andrés

acorrearojo avatar Oct 10 '19 15:10 acorrearojo

Did you replace the API key in the apiKeys.json?

{
    "apiKeys": [
        "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
    ]
}

Replace the X's with your api key generated by gcloud.

Hi all,

I enabled a Map Static API with a new API KEY for Google MAPS. however still the same error.

Any news about this issue?

Andrés

AceGabrielFigueroa avatar Oct 10 '19 16:10 AceGabrielFigueroa

Sorry, I just saw this msg. Change it as @AceGabrielFigueroa indicated. and restart XD. It worked for me. btw, I'm not a developer on this project, just another user of XD that was interested in this plugin.

Make sure you're changing the apiKeys in the correct directory. I'm not sure XD names plugin directories, so I didn't want to give anyone bad info. Look for the directory with apiKeys.json and the main.js that has the staticmap call.

On the mac, you'd run these two commands:

cd ~/Library/Application\ Support/Adobe/Adobe\ XD/plugins/e1e8f866

this creates a template file (called source.json) for us to use: echo "{ \"apiKeys\": [ \"XYZ\" ] }" > source.json

you can do an ls source.json and you should see your file. run cat source.json to see the contents.

Then run the following command (but first replace your_api_key in the command below with the key you got on google developer page)

sed 's/XYZ/your_api_key/g' source.json > apiKeys.json

That should work for you.
run rm source.json to clean up the XYZ file.

Hope that helps

bkbonner avatar Oct 10 '19 17:10 bkbonner

Maybe add a Settings field for the API key?

slavajacobson avatar Oct 14 '19 20:10 slavajacobson

That would be a desirable change.

On Mon, Oct 14, 2019 at 4:22 PM Slava [email protected] wrote:

Maybe add a Settings field for the API key?

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/boopeshmahendran/AdobeXD-maps/issues/6?email_source=notifications&email_token=AAFDA6JRDMFWNV5M3JEMJX3QOTIHJA5CNFSM4I4TCZR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEBGLXIA#issuecomment-541899680, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAFDA6OB4O2VQ3SYDJWPFFLQOTIHJANCNFSM4I4TCZRQ .

bkbonner avatar Oct 14 '19 20:10 bkbonner

Well for those that have fixed it locally for yourself (@bkbonner), why not just push those changes up as a PR to help the author fast-track the completion?

mkormendy avatar Oct 16 '19 23:10 mkormendy

Guys, I had the same issue, updated with my API key and still had the same problem. After some troubleshooting, I determined that in my case, I had not set up the billing in Google so the request would return a different error.

So...

  1. Update the API Key with yours
  2. Make sure your billing is set up
  3. Restart XD and try again

If you are still having issues, try to grab the code generated when you style a google map (the api code, plug in your key and paste into a browser window...). Any error returned by the service should appear there.

Hope this helps!

Cheers!

CSharpGuy2006 avatar Oct 17 '19 20:10 CSharpGuy2006

How would I fix this issue on Windows 10? I'm creating an app for my senior capstone class and can't edit the plugin code. Need help ASAP!

CJHissle avatar Oct 22 '19 18:10 CJHissle

@CJHissle According to this article by adobe, your plugin folder location would be located at: C:\Users\%USERNAME%\AppData\Local\Packages\Adobe.CC.XD_adky2gkssdxte\LocalState\

You would then need to locate the plugins folder and find the correct plugin folder name and edit the code.

I hope that helps. If not, maybe ill make a PR to include an api-key input box. (Quite busy).

AceGabrielFigueroa avatar Oct 22 '19 22:10 AceGabrielFigueroa

@AceGabrielFigueroa Hey, thanks for the help on finding the plugin location. I used my API key in place of the current one and still getting an error.

CJHissle avatar Oct 23 '19 03:10 CJHissle

@CJHissle Did you enable billing on the project? Check if billing was enabled.

  1. Login to Google Cloud Platform.
  2. Make sure you are in the same project that you enabled the static Maps Static API.
    1. If not, change your project by clicking the drop down right next to 'Google Cloud' logo.
  3. On the left side of the top nav bar, click on the hamburger icon.
  4. You should see a drawer open up. Locate Billing and click on it.
  5. If you haven't set a billing account, it should give you an option to link a billing account. You need to link a billing account.

If you are able to send a request but still receive an error, check out this page. This is the error documentation for google static maps.

EDITED It could be that you messed up the formatting of the json file. It is not space sensitive, but perhaps you are missing an bracket or quote somewhere.

AceGabrielFigueroa avatar Oct 23 '19 04:10 AceGabrielFigueroa

Same problem here

nms73631 avatar Oct 23 '19 10:10 nms73631

Hey guys, finally got it working. Definitely gotta make sure the billing is set up.

CJHissle avatar Oct 23 '19 15:10 CJHissle

Well I managed to create a pull request with the following features:

  1. Remove default API key and related code
  2. Add user-defined API key implementation
  3. Add application-persistent plugin settings to save JSON and API keys
  4. Minor UI cleanup and fix plugin name casing

@AceGabrielFigueroa, I now see your pull request! Oops, independently working on the same feature but I added some other stuff as well.

mkormendy avatar Oct 24 '19 02:10 mkormendy

For the code to be more maintainable, yours is more suffice. I only did it within an hour because I was just curious in making plugins. Hopefully the maintainer of this plugin will accept the PR, but he seems to be inactive.

AceGabrielFigueroa avatar Oct 24 '19 03:10 AceGabrielFigueroa

@boopeshmahendran can you merge my pull request?

mkormendy avatar Oct 24 '19 16:10 mkormendy

Still the same error

ghost avatar Nov 14 '19 13:11 ghost

So basically the deal is this. It looks like the API key was invalidated, or something else.

if you go to https://developers.google.com/places/web-service/get-api-key you can request your own google maps api key.

Then you can update the plugin apikeys.json file which is located here:

~/Library/Application Support/Adobe/Adobe XD/plugins/

It's located in one of the directories. Edit the file and replace the key with the one you obtain from google and then it works like a champ.

There's nothing wrong with the app, it just doesn't support using his shared key. It probably shouldn't have been shared.

Hope this helps.

I looked into the code and found this as well , I saw a commit that will allow the user to input their own api key , but the pull has not been merged and released.

ashtonbradley45274 avatar Nov 27 '19 14:11 ashtonbradley45274

Isnt it easier to just add new field to the library so that we can enter our own api key. I will make pull request in couple of days

Dzivo avatar Jan 09 '20 00:01 Dzivo

@Dzivo look at my pull request - it’s already done and works. Download my fork of this and overwrite the plugin with the fork’s files.

mkormendy avatar Jan 09 '20 01:01 mkormendy

Still the same error

@gfreiresantos95 did you use the forked version I created that fixes it?

mkormendy avatar Jan 10 '20 03:01 mkormendy

i hope quick fix :(

error:${req.status}

Skarnet95 avatar Feb 14 '20 18:02 Skarnet95

@Skarnet95 its been fixed already, have you updated your plugin in XD and followed the steps?

mkormendy avatar Feb 14 '20 19:02 mkormendy

@Skarnet95 its been fixed already, have you updated your plugin in XD and followed the steps?

buy API from google is too expensive for me :/

P.S. I hope the program developer will solve this problem himself, maybe with adobe xd developers

Skarnet95 avatar Feb 14 '20 19:02 Skarnet95

@Skarnet95 it can't be fixed by the developer because of the changes in the google maps api platform, now each member need to get his own api key and put it as an input so that it works.

YasserDRIF avatar Feb 14 '20 21:02 YasserDRIF

I really wish there was a solution for this, it would seem to be obvious that people need maps!

daVinciAngelo avatar May 30 '20 21:05 daVinciAngelo

Hello mates,

I was also getting the same error for so long. And I have checked the complete plugin code and everything. And at last, I found the solution.

First of all, check the [static map url] being used in your "main.js" file of your plugin folder. You can check the correct URL in the below-attached screenshot.

image

And also check API key code written must same as this:

-- "&key=" + encodeURIComponent(inputValues.apiKey);

After all the above part is done and proper, then check your API key by entering your key in the below URL:

https://maps.googleapis.com/maps/api/staticmap?center=Brooklyn+Bridge,New+York,NY&zoom=13&size=600x300&maptype=roadmap&markers=color:blue%7Clabel:S%7C40.702147,-74.015794&markers=color:green%7Clabel:G%7C40.711614,-74.012318&markers=color:red%7Clabel:C%7C40.718217,-73.998284&key=[YOUR_API_KEY]

either it is working or not.

And if it is not working and showing a billing error or something.. then directly check the below points.

  1. Check if your Google Map Console billing is enabled or not.
  2. Check if the Static Map API service is enabled or not.

This is what I have done, and mine is working properly now.

karthikruiux avatar Aug 26 '21 06:08 karthikruiux

@Skarnet95 its been fixed already, have you updated your plugin in XD and followed the steps?

buy API from google is too expensive for me :/

P.S. I hope the program developer will solve this problem himself, maybe with adobe xd developers

You can simply add a credit card (no initial payment needed) and get $200 credits for free to use the static map hits. And if you are using the map API only to add in your designs it won't go beyond the free credits.

karthikruiux avatar Aug 26 '21 06:08 karthikruiux