Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
I am reading a blog which has mentioned "April 2015, apps will no longer be able to access friends on Facebook"
http://www.beehiveid.com/blog/dramatic-change-to-facebook-api-policy-enhances-privacy
Is it true??
You could start reading the Facebook docs which have been around since exactly one year at
https://developers.facebook.com/docs/apps/changelog#v2_0_graph_api
The /me/friends endpoint no longer includes the full list of a person's friends. Instead, it now returns the list of that person's friends who are also using your app.
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
Any workarounds to check if GIDSignIn has successfully authenticated (Google Sign-In for iOS) in view controller?
Regards to Google Sign-In for iOS the hasAuthInKeychain has been replaced to hasPreviousSignIn in v5.0.0 release.
So basically you need to use hasPreviousSignIn for checking successfully authenticate.
Link to release notes:
https://developers.google.com/identity/sign-in/ios/release
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 11 months ago.
Improve this question
Can i get the whatsapp profile pictures. Is there any chance. Is whatsapp given that feature ?? Is there any integration or any code please provide me
Suggest me pls.
Thanks
WhatsApp does not provide any API or SDK for developers.
Still you can look into this GitHub project for some reference.
https://github.com/venomous0x/WhatsAPI
You can also look into this discussion group.
http://www.quora.com/Does-WhatsApp-have-an-API
But mostly the answer to your question is NO. I am not sure if there is a little hack to get what you want.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I want to get coins values from www.worldcoinindex.com. Can anyone know how to get the json data from worldcoinindex via api.
According to the forum linked from the site, there is no API. You'll have to scrape for now.
Edit:
There is now an API; docs at https://www.worldcoinindex.com/apiservice
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
Just a quick question. Is it possible to have a 1 time twitter login on my app and at certain points i can send a tweet as that user because they are logged in?
Thanks in advance
It turns out that this isn't possible as twitters oath needs backend auth..
And fack all you down voters, was it so hard to answer a simple question rather than downvote..
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I m working on a MVC Project in which I want to show temperature of the local region from where the page is requested, can anyone tell me how to do this using local IP address.
Thanks
Don't look for a method in .NET like int GetTemperature(string ip), you won't find any. Look for an API on the internet that you could query and which will give you this information. You may take a look for example at the Yahoo Weather API.