Questions tagged [accounts]

205 questions
1
vote
0 answers

Meteor Accounts.createUser is not a function

Whenever I try to call "Accounts.createUser" (on the client) I get "EXCEPTION: TypeError: Accounts.createUser is not a function". Accoridng to the documentation it should work "By default, the Accounts.createUser function provided by…
Jon
  • 55
  • 5
1
vote
1 answer

Using Meteor, how do requestPermissions for Google Calendar with loginWithGoogle (without accounts-ui package)?

I am building a Meteor application that requires access to a logged in user's Google Calendar account. Currently I have Google Sign in on my login form (along with native account login) working. A user can sign in successfully using their Google…
1
vote
2 answers

How can I get other users' profiles details in meteor

I have got problem accessing the user profile details of the users other then the current user. The goal is to display a little footer under a each of the posts in the kind of blog entries list . Footer should consist of the post and author details…
Paul Paku
  • 360
  • 2
  • 16
1
vote
0 answers

Unable to create new Sandbox accounts, i keep getting errors and not found messages

I have been trying for several days. When I login to my Paypal developer account I can see some of my sandbox accounts, but when I try and create a new one, it either hangs with the spiny thing there for way too long, up to 20 minutes before I gave…
gwmbox
  • 123
  • 3
  • 13
1
vote
2 answers

Merging multiple user accounts with Meteor

There is a good article on merging multiple user accounts with Meteor: http://www.meteorpedia.com/read/Merging_OAuth_accounts I have an already logged in user. I want to the currently logged in user to login to Facebook and Linkedin and merge all…
vijayst
  • 20,359
  • 18
  • 69
  • 113
1
vote
3 answers

Individual user specific customization

I am building a website with individual user customization in mind. So for instance, client #1 may say i want this feature to be designed for my account and then user #2 may say i want this added to my account. I was thinking of implementing a php…
Sam Khan
  • 2,417
  • 5
  • 18
  • 16
1
vote
3 answers

How to tell whether Accounts.addEmail succeeded or failed, and if it failed, the reason why

I have a page where the user can type in a new email address and then this method attempts to add it to their account: Meteor.methods({ add_new_email: function(address) { Accounts.addEmail(Meteor.userId(), address); } }); I'm using the…
Little Brain
  • 2,647
  • 1
  • 30
  • 54
1
vote
1 answer

Broke Meteor by creating a collections 'accounts'

I accidentally created a collection accounts ... yes I know I wasn't thinking; it was really dumb of me. But now my Meteor installation is broken completely. for code like Accounts.createUser server hangs and returns error 'method createUser…
NoveltySA
  • 86
  • 4
1
vote
0 answers

Encrypt PayPal Button for Any PayPal Account - Your Account and Accounts Other Than Your Own

Is there a way to dynamically encrypt PayPal buttons for multiple PayPal accounts other than your own? I've created a marketplace so to speak, and I'm currently encrypting all buttons using my public key that I uploaded to PayPal. However, it…
OwN
  • 1,248
  • 12
  • 17
1
vote
2 answers

Automatically show related contacts of accounts in dynamics CRM

One of my client want to allow their users to view the related contacts of an account, even if they are not shared with them. I've suggested some solutions that were including workflows, plugins or teams. But he is still insisting that if a user can…
User089
  • 139
  • 3
  • 14
1
vote
2 answers

Preventing brute-force login attempts

I want to prevent hackers to break into my users' accounts. It is often said that: The best approach it to lockout an account temporarily after x failed login attempts. I understand this and it seems like a good idea. Using IP for example is a…
ebvtrnog
  • 4,167
  • 4
  • 31
  • 59
1
vote
2 answers

Python - Dictionary isn't being registered in my code

I'm very new to Python and was testing myself on making a login and signup account database type thing (very basic) it's all text based. Some reason, when I run the code and signup, it needs the accounts dictionary inside of signup(), but when I…
Tom King
  • 13
  • 3
1
vote
1 answer

Simple Schema error in Meteor

I am using the meteor accounts and simple schema for users to register and enter their profile information in my app. I defined a schema for users and attached a schema for address to it. However, when I go to register an account, I keep getting the…
Trung Tran
  • 13,141
  • 42
  • 113
  • 200
1
vote
1 answer

Retrieving Google User Information once logged in (Meteor)

I've not been able to show my google users name or profile picture. This is what I have so far... Accounts.onCreateUser(function(options, user){ if (options.profile) { options.profile.picture =…
1
vote
1 answer

In SQL can you GRANT privileges to MULTIPLE accounts with a single command?

This is just for a uni assignment. Instead of doing this: DENY DELETE ON SECRETAGENT, SECRETMISSION, AGENTMISSION TO A1; DENY DELETE ON SECRETAGENT, SECRETMISSION, AGENTMISSION TO A2; DENY DELETE ON SECRETAGENT, SECRETMISSION, AGENTMISSION TO…
Yiannis
  • 929
  • 2
  • 11
  • 14