1

Problem with too big geozone import

Тема: Problem with too big geozone import

Hello Gurtam,

We have geozone with many points about 900. When we send request to import this geozone we get error code:

The remote server returned an error: (414) Request-URI Too Large.

Is there any way to bypass this limit? Maybe there is another way to import big geozones?

2

Problem with too big geozone import

Re: Problem with too big geozone import

Probably you are sending GET-request. Try POST and place data to the body, not in the URL.

3

Problem with too big geozone import

Re: Problem with too big geozone import

I had this same issue.
As rual said, this happens when you try to create it throught GET method.

In my case I changed to POST Method and had to tweak a bit the request because putting the data in the body was not enough(maybe because im using Node).