telefonicaid / sigfox-iotagent

IoT Agent for the Sigfox protocol
https://iotagent-sigfox.rtfd.io/
GNU Affero General Public License v3.0
11 stars 13 forks source link

Device not found #24

Open kapsali29 opened 6 years ago

kapsali29 commented 6 years ago

Hi,

I am trying to send measurements to the sigfox iotagent. Firstly i register the service and the device to the agent. As you can see from bellow:

Service Provisioning

POST /iot/services/ HTTP/1.1

fiware-service: dumbMordor
fiware-servicepath: /deserts
Content-Type: application/json
{
  "services": [
    {
      "resource": "/sigfoxDev",
      "apikey": "23HJK3Y9090DSFL173209HV8801232",
      "type": "SIGFOX",
      "commands": [],
      "lazy": [],
      "active": []
    }
  ]
}

Device Provisioning

POST /iot/devices/ HTTP/1.1
fiware-service: dumbMordor
fiware-servicepath: /deserts
Content-Type: application/json

{
  "devices": [
    {
      "device_id": "sigApp2",
      "protocol": "SIGFOX",
      "entity_name": "sigApp2",
      "entity_type": "SIGFOX",
      "timezone": "America/Santiago",
      "attributes": [
        {
          "name": "time",
          "type": "String"
        },
        {
          "name": "statin",
          "type": "String"
        },
        {
          "name": "lng",
          "type": "String"
        },
        {
          "name": "lat",
          "type": "String"
        },
        {
          "name": "theCounter",
          "type": "Integer"
        },
        {
          "name": "theParam1",
          "type": "Integer"
        },
        {
          "name": "param2",
          "type": "Integer"
        },
        {
          "name": "tempDegreesCelsius",
          "type": "Integer"
        },
        {
          "name": "voltage",
          "type": "Integer"
        }
      ],
      "lazy": [],
      "static_attributes": [],
      "commands": [],
      "internal_attributes": [
        {
          "mapping": "theCounter::uint:32  theParam1::uint:32 param2::uint:8 tempDegreesCelsius::uint:8  voltage::uint:16"
        }
      ]
    }
  ]
}

After those steps, i try to send measures using the following GET callback

GET /update?id=sigApp3&data={theCounter: 2, theparam1: 0,param2: 0,tempDegreesCelsius: 35,voltage: 3183} HTTP/1.1

fiware-service: orion-dumbmordor
fiware-servicepath: /deserts
Cache-Control: no-cache

And the response i get is,

{ "name": "DEVICE_NOT_FOUND", "message": "No device was found with id:sigApp3", "code": 404 }

I checked the record in mongo, and the device id is sigApp3 also i checked the agent logs and again nothing...

AlvaroVega commented 6 years ago

fiware-service should be dumbMordor not orion-dumbMordor. Did you tried again?