bkhane
- Total activity 13
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 3
Activity overview
Latest activity by bkhane-
bkhane commented,
My ticket number: 1813690Last time I got the error was 7.42 3rd of January 2018 (central European time)
-
bkhane commented,
I've opened a ticket with my client ID but I'm not sure where I can find the box Request ID.
-
bkhane commented,
I've tried that but that didn't seem to work. BoxAPIConnection works with a developer token, but if I use client ID, Secret and the authorization token then it is not creating a working connection...
-
bkhane commented,
URL obj = new URL(url); HttpsURLConnection connection = (HttpsURLConnection) obj.openConnection(); connection.setRequestMethod("POST"); connection.setRequestProperty("grant_type=","autho...
-
bkhane created a post,
Getting Error 400 while Requesting an Access token (Java)
In the last step of the OAuth2 I'm getting an error 400, so my http request is probably not formatted properly. I'm using java so I tried to turn the Curl command from the official documentation ...
-
bkhane commented,
I'm new to programming and I don't really know a way to implement the authentication now.I've looked it up but I'm not finding any sample code for the OAuth User authentication. Could someone who ...
-
bkhane created a post,
Authentication with OAuth2 Guide Java
Currently using the Box Guide "Authenticate with OAuth 2" with javaimport org.bouncycastle.math.ec.ECCurve.Config; import zero**removed**.config; import com.box.sdk.BoxAPIConnection; import com.bo...
-
bkhane commented,
private static void getIDs(String root, String devToken) { BoxAPIConnection api = new BoxAPIConnection(devToken); // DEV TOKEN BoxFolder folder = new BoxFolder(api, root); for (BoxIt...
-
bkhane commented,
I've already implemented authentication, I receive an access token and a basic test request is working.The problem is that I'm not sure on how to use this exact access token with my download funct...
-
bkhane created a post,
BoxAPIConnection wrong Parameters Java (Error 400)
So I have a function to donwload files from a folder and subfolders and when I use it with the developer token it works perfectly fine. BoxAPIConnection api = new BoxAPIConnection("DEV TOKEN");I a...