Documentation
AnsweredIs there any documentation on the SDK? There is a github page but nothing is truly documented.
For say an box application using JWT what access scope is by default? Trying to add a file doesnt make much sense.
BoxFileRequest req = new BoxFileRequest()
{
Name = "example1.pdf",
Parent = new BoxRequestEntity() { Id = "0" }
};
var newFile = await boxClient.FilesManager.UploadAsync(req, memoryStream);
Seems that folder 0 doesnt exist? Isnt this the default folder?
Is there a way to list the folders without giving a folder id?
-
Official comment
Hi Nick,
We have a ton of getting started materials and documentation on our developer site. For SDKs, we having example code in the API reference sections, as well as the docs sections of each respective code base in Github. Here is python's as an example.
Hope this helps,
Alex, Box Developer Advocate
Comment actions
Please sign in to leave a comment.
Comments
1 comment