0
我想訪問facebook用戶在firebase雲端功能上的原始照片大小和性別。我正在看圖api,但它很難理解。據我所知,我不能僅僅使用Firebase來完成這項工作?將facebook圖形與firebase集成
有沒有簡單的方法可以做到這一點?
我想訪問facebook用戶在firebase雲端功能上的原始照片大小和性別。我正在看圖api,但它很難理解。據我所知,我不能僅僅使用Firebase來完成這項工作?將facebook圖形與firebase集成
有沒有簡單的方法可以做到這一點?
如果您的用戶通過Facebook進行了身份驗證,您可以從Auth對象(https://firebase.google.com/docs/auth/admin/manage-users)獲取photoUrl。
admin.auth().getUser(uid)
.then(function(userRecord) {
// See the UserRecord reference doc for the contents of userRecord.
console.log(userRecord.photoURL);
})
.catch(function(error) {
console.log("Error fetching user data:", error);
});
如果你想連接到Facebook圖形API,那麼你就需要一雙火力地堡帳戶,以便您可以谷歌的網絡外部訪問的數據。
感謝您的回答。 UserRecord不包含我所需要的。 (訪問大尺寸的照片和性別..)所以我必須使用圖形API,因爲我明白。這就是我的問題;我如何使用圖形API在雲功能? – Zafer