-
-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
linkWith
not returns a sessionToken
in CloudCloud
#9518
Comments
🚀 Thanks for opening this issue! |
I was unable to replicate, here is the test that I wrote: it('link with provider should return sessionToken', async () => {
const provider = getMockFacebookProvider();
Parse.User._registerAuthenticationProvider(provider);
const user = new Parse.User();
user.set('username', 'testLinkWithProvider');
user.set('password', 'mypass');
await user.signUp();
Parse.Cloud.define('linkWith', req => {
const user = req.user;
const authData = req.params.authData;
return user.linkWith('facebook', authData);
});
const httpResponse = await request({
method: 'POST',
url: Parse.serverURL + '/classes/_User',
headers: {
'X-Parse-Application-Id': Parse.applicationId,
'X-Parse-REST-API-Key': 'rest',
'Content-Type': 'application/json',
},
body: { authData: { facebook: provider.authData } },
})
expect(httpResponse.data.sessionToken).toBeDefined(); // r:f0032f6f62b6b42858db3faa6dc7520b
expect(httpResponse.data.objectId).toBeDefined(); // UXKOqBmJ3Z
}); |
Just to add to this discussion. I did something like this recently as well. Observed that it did not return the sessionToken. Note: This only happens if Doing following workaround via the Rest API currently to make it work with export async function loginUser<T>(
authData: T,
provider: string,
): Promise<Parse.User> {
const url = `${SERVER_URL}/users`;
const data: AuthDataPayload<T> = {
authData: {
[provider]: authData,
},
};
try {
const response = await axios.post(url, data, {
headers: {
'X-Parse-Application-Id': APP_ID,
'X-Parse-Revocable-Session': '1',
'Content-Type': 'application/json',
},
});
const userData = {
className: '_User',
...response.data,
};
return Parse.User.fromJSON(userData);
} catch (error) {
console.error(
'Error logging in user:',
error.response ? error.response.data : error.message,
);
throw error;
}
} |
Yeah I tried to edit the test / test suite to no avail. Let me see if I can replicate with the example server |
This is intended behavior, if you want the sessionToken you will have to pass an Lines 974 to 979 in 257be69
|
What does that have to do with |
Setting directAccess set the parse-server/src/ParseServerRESTController.js Lines 13 to 15 in 257be69
|
I reopened this issue because I wonder: a) Is this behavior documented, and if not, should it be? |
No idea, it should be
What is the installationId? It's a unique identifier per device. Passing it is what connects the loggin user to a device. The server isn't a device. Can we remove it? The code is commented by our ancestor saying it's dangerous to have session in cloud environment. |
Reading through the discussion, I realized that a session object has an The question then remains why this behavior should be different whether directAccess is true of false. It's the same Cloud Code environment after all. It's also not documented in the options and not really intuitive. Maybe the solution could be:
|
Yeah, but I still don't quite understand why it's "dangerous" to use in Cloud Code though. I do remember reading that for some methods like I don't know if that applies to https://parseplatform.org/Parse-SDK-JS/api/master/Parse.User.html#logIn |
Without pre-empting @dplewis's response, I think that was a point of view that came up during the transition from hosted parse.com to open source Parse Server. In parse.com it was valid to use |
I think these suggestions are good then. |
I'm encountering an issue with linkWith in Cloud Code on Parse-Server 7.2. When linking a user with a third-party provider, the method does not return a sessionToken as expected. This breaks the intended behavior, where the user should be logged in automatically after linking.
Steps to Reproduce
Here is the code snippet that demonstrates the issue:
Attempt to link the user with a provider using linkWith.
Observe that no sessionToken is returned.
Environment
Parse Server Version: 7.2
The text was updated successfully, but these errors were encountered: