Is there any way for going around the login page required after getting a BOX token. I need to use the BOX account as an admin so is there any workaround so that it can be done programatically.
相关问题
- Box webhooks deprecated in favor of long polling?
- API 2.0 how to upload file with POSTMAN?
- Using As-User in Box Request
- Is there any way to get all files and folder in bo
- Is this a bug of Box API v2 when getting events
相关文章
- Is this a bug of Box API v2 when getting events
- box api error getting the access token: Invalid gr
- Why do I get a redirect URI mismatch when trying t
- Authentication to Box in a C# desktop application
- Load, save and use of authentication data in Box A
- Box API always returns invalid grant_type paramete
- 骡母连接器 - 无效的密钥类型/消息负载的类型为String(Mule Box Connector
- 根据日期过滤器文件夹列表;(Filter folder listing based on date)
You can easily fill out the form and submit it without ever opening a browser. If you are using Python, you can do this with Mechanize or Clientform. I suppose you can do the same thing with other languages as well. But I'm not sure what the point is, since you need to authenticate your user, and the Box login page does the job nicely. If you don't want to make the user sign in every time, then serialize the token with a timestamp denoting how long you want it to be good for and use that token until it expires.
good luck, Mike
there has been new developments since this question was posted, and now it's possible to use JWT (JSON Web Token) and Box Developers Edition to access Box.
If you create a developer account you will be able to create App users and login using an enterprise token and a private key file. Check out the docs for more information: Box Developer Edition
Additonally, boxsdk comes with support for Box Developer Edition
If by the login page you're referring to the credentials page at:
that you redirect the user to after getting a ticket from:
Then the answer is currently no. As far as I know there's no plans to support an authentication method involving directly supplying credentials.