It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
We are facing issues while disconnecting app from Intuit App center.
When we do disconnect, our disconnect servlet is getting called but parameters are null.
From the forums we understood that disconnect landing URL should be OpenID enabled to get the information like realmId, username. In our case we are not implementing OpenId since
we don't want to publish in the Intuit App Center. So how we will get the details
such as realmID of disconnected company when disconnect from Intuit App center. Is it possible to get those details without implementing OpenId while disconnection from Intuit app center?
Realm id, email and user name are only provided through AX or SREG params. If OpenID is not implemented, you would not be able to retrieve those values.
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I want to develop a facebook app such that when the user install my app. I can
Get the user's application list
Find his friend who use the same apps as him(categorized by apps)
Track whether the user receives recommendation for the app
Track what information each app needs from users.
I have little experience in facebook app developing. I want to know is it technical possible to achieve the above four aims using facebook api?
Nope, the feature to retrieve the list of applications the User has authorized is not exposed to any of the present Facebook's APIs.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Is it possible in iPhone if we can track users actions? Like which applications he has opened, sent messages or calls etc.
Thanks
Simple answer: no
Apps cannot access the usage information of different apps.
There is a (work arround) solution by implementing a Proxy-App, which provides a proxy server and registers this proxy server in the preferences. All network data would pass that proxy and your Proxy-App could send usage statistics to your server.
However, you can only track network traffic, not other usage statistics. Moreover, this App would never pass the App Review process...
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I would like for users of my website to be able to login to my website using their Facebook account. My website is going to be powered by the Spring framework.
Can Spring Social help me or do I need to create a Facebook app?
Any general guidance, advice or pointer welcome.
The accepted answer is technically correct in saying that Facebook is not an OpenID provider. However, OpenID is not the only way that this can be accomplished.
Spring Social's ProviderSignInController can be used to do a "sign-in-with-{provider}" authentication, where {provider} can be any OAuth-secured API, including Facebook. See the Spring Social Showcase for an example of how this is done.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Is this possible to retrieve email id configured on iOS device
if you intend to fetch the email id from native "Mail" application, it is not possible by any of the public APIs available through iOS SDK.
There is a project on GitHub which uses public API's from apple to achieve this. It is showing the leaks, so I don't know how long it is going to work.. I tried to find it, but I cannot find it so fast on my MacBook. If I find it, I will post you the link... But it's on GitHub for sure!
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I am creating a site that I want to use Facebook login solely for convenience. People coming to my site will want to be anonymous and not use their real names.
I used Facebook connect on a site in the last 6 months that asked me to input a username after I filled in my Facebook login credentials (It was still in the Facebook connect box).
I have not seen it since and am trying to explain it to a developer. Does anybody know about this, or how to achieve it?
Sounds like the webapp in question authenticated against FB Connect, and then used some piece of information returned (uid, probably) to create an entry in the site's user database, which also allowed for a username to be used on the site, rather than just using the person's name as supplied via FB.