UserProfileChangeRequest setPhotoUri - 它是如何完成的?

时间:2016-07-15 23:54:21

标签: android firebase firebase-authentication

如果我想允许用户从设备上传自己的照片:

  1. 需要什么图像格式?

  2. 图片文件大小?

  3. 图片尺寸?

  4. 我在哪里上传到?

  5. 代码:

    UserProfileChangeRequest profileUpdates = new UserProfileChangeRequest.Builder()
            .setDisplayName("Jane Q. User")
            .setPhotoUri(Uri.parse("https://example.com/jane-q-user/profile.jpg"))
            .build();
    

1 个答案:

答案 0 :(得分:1)

谢谢Frank快速回答。

我写了一些关于上传到firebase存储的内容,然后尝试将其粘贴到此处,但“未正确格式化为代码”阻止我上传。