我已从我的Google Developer Console下载client_secret.json
文件,以获取我网站上我的Google日历功能的OAuth。
我应该将此文件放在Laravel应用程序中,以便此文件安全且安全,因为它包含敏感数据
答案 0 :(得分:0)
您实际上不需要ArrayList<String> list = new ArrayList<>();
for (int i = 0; i < jsonArray.length(); i++) {
try {
JSONObject json = jsonArray.getJSONObject(i);
list.add(json.getString("videoID"));
} catch (JSONException e) {
e.printStackTrace();
}
}
文件。您可以在运行时加载数组。
client_secret.json
有关如何在PHP应用程序中安全地加载敏感数据以填充此数组的信息,请参见this answer。