Skip to main contentdfsdf

Home/ olathcika's Library/ Notes/ Facebook App User Id 0

Facebook App User Id 0

from web site

=


Facebook App User Id 0

Download

Facebook App User Id 0

The actual problem is the Real Time Update. –kolli Apr 15 '15 at 23:04 1 Thank you very much for this! This saved my project. –kolli Apr 15 '15 at 23:02 add a comment Your Answer draft saved draft discarded Sign up or log in Sign up using Google Sign up using Facebook Sign up using Email and Password Post as a guest Name Email Post as a guest Name Email discard By posting your answer, you agree to the privacy policy and terms of service. –Sam Soffes May 11 '17 at 4:35 add a comment up vote -5 down vote there is a dirty hack to retrieve original user id this returns the facebook public information as follows, { "id": "app-scoped-id", "firstname": "xxxx", "gender": "male", "lastname": "yyyy", "link": " "locale": "enUS", "name": "xxxx yyyy", "username": "zzzz" } Then you make another graph api call with username This will returns the original facebook id and other public information, instead of app-scoped-id shareimprove this answer answered May 22 '14 at 14:50 Sasanga Abeywickrama 1456 2 Username doesn't exists in API v2.0. I always used the Real Time Updates and graph API calls like " to analyze user activity on the Facebook page where the app was. How does the username solve my problem? Anyway, I don't have the username of the users registered for my app. But since these data contain the original user ID, I'm not able to match the activities to my registered users anymore! So is there a way to get the original Facebook user ID from an app-scoped user ID? Or the other way round? EDIT: I ended up fetching the app-scoped IDs for all my users using the API method mentioned here: and stored them in my database in addition to the old ID. Not the answer you're looking for? Browse other questions tagged facebook facebook-graph-api facebook-apps or ask your own question. I see all the fields but not the 'username' field. –kolli May 23 '14 at 12:31 1 There's an open bug about realtime updates using the wrong ID here: developers.facebook.com/bugs/744639905588610 –Igy May 29 '14 at 16:50 I would love to see that bug fixed, that would make things a lot easier for me :) thx for the info! –kolli Jun 5 '14 at 14:21 just to mention, facebook.com/appscopeduserid/264254410443692 this type of urls work in the case you want to access a user profile from app scoped user id –Bill'o Aug 3 '15 at 15:46 add a comment 6 Answers 6 active oldest votes up vote 6 down vote accepted there's no (simple/obvious) possibility to get a real user id based on an app-scoped user id. .. –kolli May 22 '14 at 13:47 add a comment up vote 25 down vote From your conversation between Johannes N. At least Facebook managed to fix the bug mentioned in the comments (Get Facebook User ID from app-scoped User ID) a few days before the API v1.0 was deprecated, so for new users of my apps, it works like a charm. asked 3 years, 7 months ago viewed 49,837 times active 1 month ago Blog Take the 2018 Developer Survey Get the weekly newsletter! In it, you'll get: The week's top questions and answers Important community announcements Questions that need answers see an example newsletter By subscribing, you agree to the privacy policy and terms of service. – May 23 '14 at 9:06 Yes, I know about the backward compatibility. Stack Overflow Questions Jobs Developer Jobs Directory Salary Calculator Help Mobile Stack Overflow Business Talent Ads Enterprise Company About Press Work Here Legal Privacy Policy Contact Us Stack Exchange Network Technology Life / Arts Culture / Recreation Science Other Stack Overflow Server Fault Super User Web Applications Ask Ubuntu Webmasters Game Development TeX - LaTeX Software Engineering Unix & Linux Ask Different (Apple) WordPress Development Geographic Information Systems Electrical Engineering Android Enthusiasts Information Security Database Administrators Drupal Answers SharePoint User Experience Mathematica Salesforce ExpressionEngine Answers Stack Overflow em Portugus Blender Network Engineering Cryptography Code Review Magento Software Recommendations Signal Processing Emacs Raspberry Pi Stack Overflow Programming Puzzles & Code Golf Stack Overflow en espaol Ethereum Data Science Arduino Bitcoin more (26) Photography Science Fiction & Fantasy Graphic Design Movies & TV Music: Practice & Theory Worldbuilding Seasoned Advice (cooking) Home Improvement Personal Finance & Money Academia Law more (16) English Language & Usage Skeptics Mi Yodeya (Judaism) Travel Christianity English Language Learners Japanese Language Arqade (gaming) Bicycles Role-playing Games Anime & Manga Puzzling Motor Vehicle Maintenance & Repair more (32) MathOverflow Mathematics Cross Validated (stats) Theoretical Computer Science Physics Chemistry Biology Computer Science Philosophy more (10) Meta Stack Exchange Stack Apps API Data Area 51 Blog Facebook Twitter LinkedIn site design / logo 2018 Stack Exchange Inc; user contributions licensed under cc by-sa 3.0 with attribution required. Probably because API used older, deprecated version of Graph API –Ognj3n Oct 31 '16 at 13:43 Unfortunately the intended use of scoped IDs is to make it impossible to get the real ID from it. Join Stack Overflow to learn, share knowledge, and build your career. Graph Explorer won't let me try it, so I will test it from the app directly during the registration process. that would help too. You're a life saver. Your best bet is converting all of them to scoped. And if you are using API v1.0 from the beginning you don't need to use app scoped user ids. –mobopro Jul 3 '14 at 1:40 5 not working as of 04/08/2016 . It's pretty easy: Here's some simple Ruby code that does this: require 'open-uri' require 'json' json = JSON.load(open(" scopedid = /appscopeduserid/(d+)//.match(json[realid.tos]['link'])[1] shareimprove this answer edited Apr 21 '15 at 8:15 answered Mar 19 '15 at 20:59 Sam Soffes 12.4k65867 4 Upvote for the idea, but it won't solve my problem unfortunately. shareimprove this answer answered May 22 '14 at 13:27 Johannes N. Can I get the app-scoped ids (for apps I own) via the original user id. –kolli May 22 '14 at 16:13 As I said. Trying Facebook Graph Explorer with the user ID of 4 as above returns "id": " now. Stack Overflow Questions Developer Jobs Tags Users current community help chat Stack Overflow Meta Stack Overflow your communities Sign up or log in to customize your list. In fact, thats my main problem now - having users with "real" IDs as well as users with app-scoped IDs. facebook facebook-graph-api facebook-apps shareimprove this question edited Dec 1 '17 at 12:05 ROMANIAengineer 24.6k15114119 asked May 22 '14 at 11:43 kolli 7572921 2 You should not have the problem because Graph API v2.0 is backward-compatible, if the user already authorized your app before, then you always get original user ID for this user. For users that are already registered, I will still get the "real" ID when they log into the app. And RTUs will only have one of them. It's back! Take the 2018 Developer Survey today . –WizKid May 22 '14 at 16:08 1 Unfortunately, this doesn't work for me. Nevertheless, that would only help me as long as v1.0 is available. more stack exchange communities company blog Tour Start here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site About Us Learn more about Stack Overflow the company Business Learn more about hiring developers or posting ads with us Log In Sign Up . graph.facebook.com{postId}/comments may return app-scoped user ID OR original user ID depends on this user is old user or not. –Luca Boieru Apr 16 '15 at 20:14 kolli does this still work? –Taha Sep 28 '16 at 9:49 Taha I didn't use this in the end, so no idea 5a02188284

what app do you use to edit pictures on facebook
facebook registration and download
facebook strategy for bands
facebook hack ultima v1 password
pick random name from facebook likes
facebook chat symbole handy ohne zeit
hacker de facebook programa 2013
how to view facebook without login
new facebook app delete comments
facebook account l schen unm glich

olathcika

Saved by olathcika

on Jan 10, 18