bkhane
- 合計アクティビティ 13
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 3
アクティビティの概要
bkhaneさんの最近のアクティビティ-
bkhaneさんがコメントを作成しました:
My ticket number: 1813690Last time I got the error was 7.42 3rd of January 2018 (central European time)
-
bkhaneさんがコメントを作成しました:
I've opened a ticket with my client ID but I'm not sure where I can find the box Request ID.
-
bkhaneさんがコメントを作成しました:
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さんがコメントを作成しました:
URL obj = new URL(url); HttpsURLConnection connection = (HttpsURLConnection) obj.openConnection(); connection.setRequestMethod("POST"); connection.setRequestProperty("grant_type=","autho...
-
bkhaneさんが投稿を作成しました:
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さんがコメントを作成しました:
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さんが投稿を作成しました:
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さんがコメントを作成しました:
private static void getIDs(String root, String devToken) { BoxAPIConnection api = new BoxAPIConnection(devToken); // DEV TOKEN BoxFolder folder = new BoxFolder(api, root); for (BoxIt...
-
bkhaneさんがコメントを作成しました:
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さんが投稿を作成しました:
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...