bkhane
- Activité totale 13
- Dernière activité
- Membre depuis
- Abonné à 0 utilisateur
- Abonnés 0 utilisateur
- Votes 0
- Abonnements 3
Aperçu des activités
Dernière activité effectuée par bkhane-
bkhane a ajouté un commentaire,
My ticket number: 1813690Last time I got the error was 7.42 3rd of January 2018 (central European time)
-
bkhane a ajouté un commentaire,
I've opened a ticket with my client ID but I'm not sure where I can find the box Request ID.
-
bkhane a ajouté un commentaire,
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 a ajouté un commentaire,
URL obj = new URL(url); HttpsURLConnection connection = (HttpsURLConnection) obj.openConnection(); connection.setRequestMethod("POST"); connection.setRequestProperty("grant_type=","autho...
-
bkhane a créé une publication,
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 a ajouté un commentaire,
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 a créé une publication,
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 a ajouté un commentaire,
private static void getIDs(String root, String devToken) { BoxAPIConnection api = new BoxAPIConnection(devToken); // DEV TOKEN BoxFolder folder = new BoxFolder(api, root); for (BoxIt...
-
bkhane a ajouté un commentaire,
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 a créé une publication,
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...