Hello,
We have developed a small application using the Box Java SDK.
Using the SDK we fetch certain files in our Box account, and generate a sharedLink with a limited availability time. To generate the link we use following code:
BoxSharedLink.Permissions permissions = new BoxSharedLink.Permissions();
permissions.setCanDownload(true);
permissions.setCanPreview(true);
BoxSharedLink sharedLink = file.createSharedLink(BoxSharedLink.Access.OPEN, unshareDate, permissions);
This works as expected, but when we embed the sharedLink in our application there are "Sign up" and "Login" buttons visible next to the "Download" button. Is there a way to hide these "Sign up" and "Login" buttons?


