0
到目前爲止,我嘗試了:有沒有一種方法可以通過編程方式與定義的用戶共享當前計劃?
new DroneDeploy({version: 1}).then(function(dronedeploy){
dronedeploy.Plans.getCurrentlyViewed().then(function(plan){
plan.shared_users.push({username: "[email protected]"});
return plan;
).then(function(plan){
dronedeploy.Plans.update(plan.id,{shared_users: plan.shared_users});
});
);
它提供了錯誤:
shared_users is not a whitelisted field to update on the plan.
但仍使共享。我想這不是最好的和可靠的方法,什麼是適當的?
開發商謝謝@ramblinjan ,我已經解決了這個問題。 – Vadim