meteor-accounts Questions
2
While downloading [email protected]...:
error: certificate has expired
While downloading [email protected]...:
error: certificate has expired
While downloading alanning:[email ...
Robinet asked 16/2, 2022 at 19:4
2
For Accounts.forgotPassword() and Accounts.sendVerificationEmail(), a token is generated.
Does that token ever expire?
If so, after what period of time?
Prepossessing asked 25/10, 2015 at 20:8
1
I used the function Meteor.loginWithGoogle as below to login with google.
It's working on browser but It's fail (the console log is error 10) when I build to apk (by cordova).
handleLoginError(err...
Tandy asked 24/8, 2017 at 7:1
2
I have a Meteor app which lets users register through facebook oauth through meteor's accounts-facebook package. I have set-up all the neccesary packages and UI, and deployed the app on Heroku (fre...
Annora asked 27/6, 2018 at 10:50
4
I'm a bit confused about how to use Accounts.onEmailVerificationLink.
The docs are somewhat ambiguous:
Accounts.onEmailVerificationLink(callback)
Register a function to call when an email ver...
Penner asked 16/12, 2014 at 9:8
3
Solved
I'm creating new user with Accounts.createUser() and it works normally if you are not doing anything fancy. But I want to add some other fields to new user that are not listed on documentation. Her...
Baguette asked 5/5, 2015 at 10:13
4
I have been trying to find a solution (sadly for 3 months now) to login with Facebook using Meteors Accounts Facebook on iOS. I have tried just about everything a Google search will come up with, r...
Utopia asked 8/10, 2016 at 19:58
3
It seems that the "Meteor.loginWithPassword" function does not work when called in a method.
I want to create my login form with autoforms and so I created a callback method which get called after...
Bullyboy asked 26/1, 2015 at 20:12
1
Solved
We are seeing very slow login response times on our Meteor app. As load approaches 200 logins/minute the observeChanges calls become quite slow:
As loginWith<service> is part of Meteor cor...
Multiflorous asked 12/11, 2015 at 0:12
1
Solved
According to the docs , Meteor doesn't use session cookies.
However, what's the meteor_login_token cookie used for then? It looks to me like a session cookie, created after the user successfully s...
Otherdirected asked 2/8, 2016 at 8:8
1
Solved
I'm migrating my Meteor application from Meteor 1.2 to Meteor 1.3 and following the guide on http://guide.meteor.com/methods.html#validated-method to create a validated method.
When I call the met...
Archaeology asked 15/4, 2016 at 8:41
4
Solved
I was wondering if someone would be kind enough to provide a meteorpad or code example of using one of the methods listed above properly in Meteor (with iron:router). I'm struggling to understand h...
Dannadannel asked 12/1, 2015 at 17:44
2
Solved
I'm trying to out a Meteor package to interface with AWS SES called tarang:email-ses built by @Akshat.
I'm on Meteor @1.* running on a AWS EC2 instance. When I a test run with the code below, no ...
Cavender asked 21/1, 2015 at 2:32
4
Solved
I am using the meteor package ian:accounts-ui-bootstrap-3 for accounts and alanning:roles for assigning roles.
On the sign up form I have two options one for Doctor and one for Advisor. I want to ...
Zitella asked 27/5, 2015 at 12:42
2
Solved
Judging from this comment by David Glasser in the GitHub issues:
this.userId is the primary API and Meteor.userId() is syntactic sugar for users new to JavaScript who might not understand the de...
Spindle asked 26/9, 2015 at 17:55
2
Solved
I have started a min app based on meteor boilerplate with the module accounts-ui.
There is a collection created call users one of its elements is profile, this again has an element called "name" w...
Optics asked 12/3, 2015 at 14:45
3
I have a template that I am trying to display all users in called userList.
//server
Meteor.publish("userList", function() {
var user = Meteor.users.findOne({
_id: this.userId
});
if (Roles....
Sumter asked 21/6, 2015 at 4:57
2
I am making a dockerized services-based application. Some of the services will be written in meteor, some won't.
One of the services is a registration service, where users can register for the pla...
Lade asked 8/5, 2015 at 5:44
1
Solved
I'm using Meteor's accounts-ui. Is there a way to check if the user is logged in on the template without writing custom helper code?
Pseudo code:
{{#if userIsLoggedIn }}
You're logged in
{{/if}}...
Christensen asked 29/4, 2015 at 13:22
1
Solved
I've tried looking for an answer all over but cannot seem to get this working. I'm using Meteor with Cordova to build a mobile app.
I want to add an attribute to my Users collection (the one Mete...
Bernicebernie asked 23/4, 2015 at 22:43
1
Solved
Hi I am a newbie to Meteor and I would like to know what is the use of hashedToken generated inside the Meteor.user object.
In Meteor documentation it is explained that the services object,
co...
Fogarty asked 24/2, 2015 at 12:44
3
Solved
Use case: the app I built on app.foo.com, and an instance of telescope on community.foo.com, on separate application servers. The only collection they'd share is users. I would give the same mongo ...
Ripple asked 25/1, 2015 at 11:30
1
I am building part of an admin system in Meteor that lets admins add/edit other admins. I am using Meteor Accounts and Autoform, but I can't figure out how to handle it so the users are validated w...
Guileful asked 15/1, 2015 at 3:23
2
Solved
Setting up Meteor to use "out of the box" AWS SES is simple, and one can use native Meteor "Email" methods without modification.
Steps to implement this can be found here. Thanks to Brian
Shamb...
Nonconductor asked 22/1, 2015 at 2:2
2
Solved
I've a few code that I want to run only when there's noUser and a few when there's a currentUser.
All these are inside the navigation template. Like so...
{{#if currentUser}}
<li class="nav...
Heathcote asked 26/10, 2014 at 17:2
1 Next >
© 2022 - 2024 — McMap. All rights reserved.