Andrew

Results 154 comments of Andrew

The issue is the requestip. Providing a `token` with requestip is the problem. I suggest you change the requestip for the client to `referer` and then set the `referer` to...

@crackernutter you can set a filter on a featurelayer, then add that feature layer to the map.

We will look into this functionality in a future release. I'll add this to our backlog. Thank you for the suggestion.

In v2.0.0 if I have a webmap with a filter on a layer, it gets added: ![image](https://user-images.githubusercontent.com/5131271/157850917-764179a6-231a-4017-99cd-357904ce8c30.png) With the webmap definition of: ![image](https://user-images.githubusercontent.com/5131271/157851197-53ff5cb6-e299-497f-b58a-a2085fbb443b.png) How did you create your filter? Can...

@cgpeltier `to_featurelayer` is using arcpy.da.InsertCursor on the backend, and I have triaged it down to the arcpy level issue. I am in contact with the arcpy team. I'll let you...

Interesting idea we will think about it and let you know.

It seems the `to_excel` on Pandas is not converting the dictionary (Geometries) to a string. I recommend you convert the `Geometry` column to a `string` using `json.dumps` then saving it...

No Arcpy is not needed. What version of the API are you using?

Oops I was looking at two issues at once :) Thanks, I can not try testing it and seeing what is up.

Provide a username/password into the GIS object. ```python GIS(username='foo', password='bar') # this connects to AGOL ``` See: https://developers.arcgis.com/python/guide/using-the-gis/ and https://developers.arcgis.com/python/guide/working-with-different-authentication-schemes/