capacitor-community / facebook-login

Facebook Login support
MIT License
98 stars 52 forks source link

Add support for flexible Graph API calls to avoid manual API version management #154

Open sinanverve7 opened 1 month ago

sinanverve7 commented 1 month ago

Please add support for flexible Graph API calls in @capacitor-community/facebook-login to fetch user albums and photos within specific albums without manually managing API versions.

currently i manging graph api version my self,

const photoFetchUrl = `https://graph.facebook.com/v17.0/${gal_id}?fields=photos.limit(${count}){images,picture}&access_token=${result.accessToken.token}`;