简体   繁体   中英

Unable to REBOOT a device using Android Management API

I am trying to reboot a device using the enterprise ID and device ID. Below is the request parameter

Screenshot from Android Management API guide Try It feature

Android Management API 指南的屏幕截图试用功能

I don't see any action on the device end. If there is any alternate approach or if anyone had a successful attempt in this process, please let me know the process you followed.

Thanks in advance for your assistance.

Did you follow all the basic steps mentioned in the below link given by android management api?

https://developers.google.com/android/management

If yes for above, check the below options, 1 Check your device internet connection. It should be connected to a network 2 check is there any error after you submit 3 How did you enroll your device

Tried this exact code and device reboots in seconds. Try checking the parameters of your request to make sure the device id is correct. You can also set a longer duration to allow more time for the command to go through in case of delay or connectivity issues.

projectid = [Your-projectid-here] 
enterprises/LC03nfv2bi/devices/33395ba163dde778 
{
   "type": "REBOOT",
   "duration": "600s"
}

Based on this link https://developers.google.com/android/work/requirements#1-device-provisioning this feature is only available on android 7.0+.

android重启设备文档

Hope it will help you.

You have to use the next URL with POST: https://androidmanagement.googleapis.com/v1/enterprises/LC00XXXXX/devices/32e2bXXXXXXXXX:issueCommand

And this json in the request body

{  "type": "REBOOT" }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM