[RELEASE] Life360+

copied from another thread from @rjterry21 :

Also, what's the possibility of getting the Tiles ("Items" in Life360) that are tied to Life360 to show?

I'm open to supporting this but I'd need some help as I don't have any Tiles to test with. I see 3 API calls made to life360.com -- listed below. Hopefully the tile data would be returned in 1 of these -- ideally the last one:

          def urlCircles = "https://api.life360.com/v3/circles.json"
            def url = "https://api.life360.com/v3/circles/${state.circle}/places.json"
            def url = "https://api.life360.com/v3/circles/${state.circle}/members.json"

What would help is to see an example response that contained the tile(s). You can do this by going to Apps Code and editing the Life360+ app. Look for the following code block and add the log line:

members: (~ line 527)

def cmdHandler(resp, data) {
    if(resp.getStatus() == 200 || resp.getStatus() == 207) {
        result = resp.getJson()
        log.trace "Life360+: cmdHandler: $result"

Save this and watch the Hubitat logs until you see this log line show up. Copy the text and feel free to change any sensitive values like lat/lng or account ID's and either post it in a snippet here or DM me.

If nothing about the tiles shows up in the members response then I'd guess it's a new API call