我正在使用谷歌云存储在android上存储图像..我在google developers console
创建了项目并提供了该项目的所有ID。
private static final String PROJECT_ID_PROPERTY = "xxxxxxxxxxxxxx"; //project ID
private static final String APPLICATION_NAME_PROPERTY = "refined"; //application name, can be any
private static final String ACCOUNT_ID_PROPERTY = "xxxxxxxxxxxxxxx-n5kqcd842faki0se7s82vpcf9l1rbvui@developer.gserviceaccount.com"; //user account email
下载P12
文件并从代码中访问以设置p12 key
。
当我在2天后尝试时,图像上传得正确,我可以在浏览器中看到它们。但是当我今天尝试相同的代码时,它会给出禁止的问题。
{"code":403,"errors": [{"domain":"global","message":"Forbidden","reason":"forbidden"}],"message":"Forbidden"}
可能是什么原因?
答案 0 :(得分:0)
我可以解决问题...问题是权限... 我在存储桶上为客户端ID提供了写权限,然后它现在正在运行。
全部谢谢