Questions tagged [userinfo]

151 questions
1
vote
1 answer

CakePHP: Get loggedin user data

What I did I used this part of the Cookbook to create my authentication: Link After i was finished, i changed the fields to email and password (in AppController.php): public function beforeFilter() { $this->Auth->allow('index'); …
1
vote
1 answer

Get real info from Facebook user info

I've read the official documentation and a lot of docs on Google. I would like to print the user info, but when I run my code, I got this: Array ( [id] => xxxx [name] => Vinicius [first_name] => Vinicius [last_name] => M [link] =>…
0
votes
2 answers

NetworkError: 405 Method Not Allowed to get user info via Google Api

I´m trying to get the user profile information described here: http://code.google.com/intl/es-ES/apis/accounts/docs/OAuth2Login.html but am getting this error: "NetworkError: 405 Method Not Allowed -…
Alexander
  • 261
  • 2
  • 16
0
votes
1 answer

Error when setting UserInfo in UILocalNotification

I'm trying to attach an NSManagedObjectID to a UILocalNotification but keep getting the error: Property list invalid for format: 200 (property lists cannot contain objects of type 'CFType') Here's my code (taskID is an NSManagedObjectID): // Create…
Jason
  • 2,455
  • 4
  • 37
  • 48
0
votes
0 answers

[Google]Are the sub and name and email from the userinfo endpoint confidential or public?

We use https://www.googleapis.com/oauth2/v3/userinfo to get user information, use name as a display name and sub as the google user id, we don't want to violate the PII, so want to confirm whether the sub and name and email are confidential or…
Ward Miao
  • 1
  • 1
0
votes
0 answers

PSN API where I can get data of purchased games

I'm wondering if there's any way where I can get the data of all purchased games from a user on PlayStation - specifically my purchased games. I know this data is private. When I look for PSN APIs I only find about trophies, usernames, etc. Is there…
MaryF
  • 1
0
votes
0 answers

How to fetch the user email address from sender_id field of Mentions webhook of Facebook Graph API?

I have subscribed to Page Mention webhook of Facebook Graph API. It returns me a response in this format : { "entry": [ { "id": "0", "time": 1690196803, "changes": [ { …
0
votes
0 answers

How to check http status in springboot 3 using keycloak for token verification?

I want to create a method for token verification which will send a request to the userinfo endpoint of keycloak and send me back, true or false. true if the response status is 200 (OK) false if the response status is 401 (Unauthorized) I don't…
0
votes
3 answers

Retrieving information from database (1 field/object; no arrays)

I'm doing a sort of login page for my website which I'm just testing right now, and this code is after the login. The thing is, I want to retrieve some information from my database, but the code doesn't work (it doesn't echo anything). I checked…
Fasand
  • 316
  • 2
  • 10
0
votes
0 answers

I can`t to get the userinfo

Help me please. I have tried get a user information from googleApis. But I get error already. My error: { "error": { "code": 401, "message": "Request is missing required authentication credential. Expected OAuth2accesstoken, login cookie or other…
WersaT
  • 1
  • 1
0
votes
1 answer

How to add isAuth and access_token to express-session

I defined the request type as "any" but I realized it shouldn't be "any" and it also can't be "Request". I need to extend express-session to create a custom session type. How can I do that, and add the following information to the request…
0
votes
0 answers

Store/Save Authenticated user info in keycloak db after authentication

I'm new to keycloak I have created custom SPI for authenticating users, i want to save user info in keycloak db after successful authentication. I have gone through the documentation and there I found that using this…
0
votes
1 answer

How to apply to "Get balance"?

http://developers.facebook.com/docs/creditsapi/ Section "Get Balance" "You can apply here" links to http://www.facebook.com/help/?faq=19705 which is unavailable. How can I apply? I need it for casino reviews site: HolyMolyCasinos
luchaninov
  • 6,792
  • 6
  • 60
  • 75
0
votes
0 answers

Will saving hashed email password globally violate GDPR?

Our services are expanding in a lot of countries that obey GDPR like European countries. Each country has its own service. We want users to be able to log in and even share their own information across countries/services. A simple solution is that…
Hoang Pham
  • 21
  • 3
0
votes
2 answers

How to set NSManagedObject info in UILocalNotification.userInfo?

First of all, I know that it's impossible to serialize a NSManagedObject in the userInfo. My question is : Imagine my app using CoreData. When I create a new NSManagedObject, I also schedule a LocalNotification (this is a toy example). Then, when…