私はPHPで作業しておりOutlook Calendar REST API
、イベントを作成するためにAPIに指定した日付が11時間増加し、end_dateにも問題があることを除いて、イベントを正常に作成できます。たとえば、APIにからイベントを作成する から から2014-03-31T15:00:00-0000
イベントを2014-03-31T16:00:00-0000
作成することになります2014-04-01T02:00:00+1100
2014-04-01T02:30:00+1100
これは私のAPI URLがどのように見えるかです
https://apis.live.net/v5.0/9898ef90931244e8/events?name=testing_event&description=event_description&start_time=2014-03-31T15:00:00-0000&end_time=2014-03-31T16:00:00-0000&access_token=token-goes-here&method=POST
最後にを削除する-0000
と、次のエラーが発生します
{
"error": {
"code": "request_parameter_invalid",
"message": "The value of input parameter 'start_time' isn't valid. The expected formats for this parameter are the following: '1970-01-01T00:00:00Z', '1970-01-01T00:00:00.000Z', '1970-01-01 00:00:00Z'. In all cases, 'Z' is interchangeable with a time zone offset of the form: '+00:00', '-00:00', '+0000' or '-0000'."
}
}
これを修正するために何日も費やしてきたので、どんな助けにも本当に感謝します..