新しいBoxサポートサイトへようこそ。 変更点の詳細はこちらをご確認ください .

Stream_position parameter API | Python

新規投稿

コメント

1件のコメント

  • Scott Hurrey

    Looks like you have a typo. Its not actually rejecting the stream_position argument. Its not expecting any argument to be there because the argument before it is malformed. You're missing the '='. Try changing:

    events = client.events().get_admin_events(created_after='2022-05-10T22:02:24-07:00', event_types['DOWNLOAD'],stream_position=stream_position)

    to

    events = client.events().get_admin_events(created_after='2022-05-10T22:02:24-07:00', event_types=['DOWNLOAD'],stream_position=stream_position)
    0
    コメントアクション Permalink

投稿コメントは受け付けていません。