Google의 Beacon Proximity API를 사용하려고합니다. 나는 그들을 통합하는 단계를 수행 따랐다 : 그 후Google Proximity Beacon API에서 403 번 무단 오류를냅니다.
1) Signed up on Google Api Console.
2) Created new Project.
3) enabled Beacon proximity api and Nearby Api.
4) Generated Api key from Credentials.
난 다음 API를 호출 :
{
"advertisedId": {
"type": "EDDYSTONE",
"id": "ABEiM0RVZneImaq7zN3u/w=="
},
"status": "ACTIVE",
"placeId": "ChIJL_P_CXMEDTkRw0ZdG-0GVvw",
"latLng": {
"latitude": "71.6693771",
"longitude": "-22.1966037"
},
"indoorLevel": {
"name": "1"
},
"expectedStability": "STABLE",
"description": "An example beacon.",
"properties": {
"position": "entryway"
}
}
follwing을 URL로
:
https://proximitybeacon.googleapis.com/v1beta1/beacons:register?key=xxxx(my_api_key)
하지만 응답은 말한다 :
을{
"error": {
"code": 403,
"message": "Unauthorized.",
"status": "PERMISSION_DENIED"
}
}
무엇입니까? 내가 놓친 것을 ..
I also tried to use Beacon tools app but after entering EID and all other credentials..the App crashes(on android), while it is not able to connect to my eddystone on Ios.
당신이 당신의 실제 API를 사용 했 beacon.json으로이 호출의 몸을 설정 URL의 끝에 열쇠? –
예 (실제 값을 사용함) 방금 여기 트리밍했습니다 .. 다른 방법으로 잘못된 Api_key 오류가 발생했습니다. –