We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Very nice package. I'm trying to use it but I've met some problems, because I'm just so noob.
If I'm an anonymous user, how can I get my _id?
I can access the _id collections, but how do I pick mine?
The text was updated successfully, but these errors were encountered:
On the client you can just use: Meteor.default_connection._lastSessionId;
Meteor.default_connection._lastSessionId;
All communication to the server will have a connection _id, ip, user agent and so on:
Meteor.methods({ getConnectionId: function () { if (!!this.connection) { return [this.connection.id, this.connection.clientAddress]; } } })
Sorry, something went wrong.
that works like a charm, excellent package.
I spent a lot of time reading your code and it really helped this noob to learn 👍
No branches or pull requests
Very nice package. I'm trying to use it but I've met some problems, because I'm just so noob.
If I'm an anonymous user, how can I get my _id?
I can access the _id collections, but how do I pick mine?
The text was updated successfully, but these errors were encountered: