对assignedPlans
使用GraphAPI的Delta查询时,我们注意到/delta
属性仅在第一次调用deltaLink
时返回,但在所有后续调用中使用GET https://graph.microsoft.com/v1.0/users/delta?$select=id,mail,givenName,surname,userType,displayName,givenName,userPrincipalName,businessPhones,jobTitle,mobilePhone,officeLocation,department,companyName,assignedPlans
{1}}在之前的通话中返回,该属性一直缺失。
我们在第一次通话时进行的API调用:
assignedPlans
此调用的响应确实包含用户的deltaLink
属性,但在后续调用中(使用 <form action="{{url('lineManagerUpdateRequests')}}" method="post">
@foreach($items as $item)
<td>{{ $item->item_title }}</td>
<td>{{ $item->description }}</td>
<td>{{ $item->price }}</td>
<td>{{ $item->quantity }}</td>
<td>{{ $item->total }}</td>
<td>
<div class='btn-group'>
<input type="radio" name="{{ $item->id }}" value="2"> Approve
<input type="radio" name="{{ $item->id }}" value="6"> Decline
</div>
</td>
@endforeach
<input type="submit" name="submit" class="btn btn-sm btn-danger">
</form>
) - 缺少此属性。
这是Delta Query的已知问题吗?
谢谢!