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

Upload to personal account

回答済み
新規投稿

コメント

6件のコメント

  • 正式なコメント
    Alex Novotny

    Hey! 

    Can you send me a code example of what you are doing to upload content? 

    Thanks, 

    Alex, Box Developer Advocate

    コメントアクション パーマリンク
  • Matheus Cruz

    Hey Alex,

    I'm using the oficial .NET sdk.

    My app is authenticated and is App Access Level and is using OAuth 2.0 Credentials with public key.

    Documentation: https://github.com/box/box-windows-sdk-v2

    using (FileStream stream = new FileStream(name, FileMode.Open))
    {
    BoxFileRequest req = new BoxFileRequest()
    {
    Name = name,
    Parent = new BoxRequestEntity() { Id = folderId }
    };

    newFile = await _boxCliente.FilesManager.UploadAsync(req, stream);
    }

    When I upload a file it will be saved in another account on content in the admin console. The integration is creating a new account between my account and the app integration.

    0
    コメントアクション パーマリンク
  • Alex Novotny

    Great! For the client you instantiated, what parameters did you pass in? In that github repo you sent, there are several authentication type options. This probably explains why it is going to the application service account's content repository and not your own personal one. The client would need to be created with your users information. 

    Hope this helps!

     

    0
    コメントアクション パーマリンク
  • Matheus Cruz

    This app will cover a lot of clients, to every user I authorize my app in the admin console and use user's interpriseId

    0
    コメントアクション パーマリンク
  • Matheus Cruz

    I'm using this method to autheticate.

    var boxJWT = new BoxJWTAuth(
        new BoxConfig(
    _boxAppSettings.ClientID, _boxAppSettings.ClientSecret, enterpriseId,
    _boxAppSettings.AppAuth.PrivateKey, _boxAppSettings.AppAuth.Passphrase, _boxAppSettings.AppAuth.PublicKeyID
    )
    );
    var adminToken = boxJWT.AdminToken();

    _boxCliente = boxJWT.AdminClient(adminToken);
    0
    コメントアクション パーマリンク
  • Alex Novotny

    Correct! The client you are making in the above code is using your JWT config information - this defaults to the service account (the account you are seeing content in). In order to place it in another user's account, you need to be making as-user calls. To do this with the .net sdk, you have to make a client using the credentials of the user you wish to make the API call as. Refer to this page. I believe there is sample code on the .net sdk github main page too. 

    0
    コメントアクション パーマリンク

サインインしてコメントを残してください。