I have just downloaded Meteor framework from github and running it locally it shows signin/signup page..
Where can I reach that page or the page that contains the email form to authenticate?
I have looked everywhere but with no luck...
Some of the examples have the accounts-ui package built in. You can see the documentation here: https://docs.meteor.com/packages/accounts-ui.html
If you are trying to change the style of the login, you'll want to use the accounts-ui-unstyled package.
Detailed styling guidlines can be found at: https://guide.meteor.com/accounts.html#useraccounts
Related
m a newbie using meteor. I created an app and followed the guide by running the following commands:
-meteor add useraccounts:materialize
-meteor add materialize:materialize
-meteor add accounts-password
-meteor add accounts-facebook
-meteor add accounts....
After creating a template with the line {{> atForm}} and running the app i noticed that it never shows the external login buttons, from facebook and etc as it should. only the form for local login. It only shows the email and passord field for local authentication.
I've also tried with bootstrap and it doesn't works.
Any clues on what may be the problem?
Sometimes the packages folder gets conflicts.
You could try uninstalling all accounts packages (check .packages file). Make sure you remove accounts-ui packages, then try again with your setup. Also remove autopublish and insecure.
Ultimately a fresh install with above steps will probably fix if nothing else.
It was missing the configuration
Ex: Login With Facebook Using Meteor
I want to provide the user with the option to share the posts on my website using mail, facebook or twitter... similar to this(https://hasjob.co/view/bl0dl), Please let me know the available packages or other ways in meteor & meteorite for implementing this features.
Javascript plugins like sharethis can still be used with Meteor.
However, a specific Meteor package that will give you what you want is: social share
I need a Facebook login button for an ASP.NET 4.5 site (not MVC).
I have followed this tutorial for the Facebook SDK:
http://facebooksdk.net/docs/web/getting-started/
But it skips over several points, doesn't provide any downloads and just doesn't work.
How can I do this - ideally using built in methods that require little work to implement - and allow you to retrieve email from Facebook. If that isn't possible a NuGet package (ideally one that is widely used) would be fine.
The Facebook SDK for .NET looks promising but I can't get it working and can't find other examples of its use online.
UPDATE
I need the user to press login, be authenticated, then give me their email (from fb?), enter a password.
I need to know all this and manipulate it all from C# code behind.
If they are already logged into FB - and already signed up for my site - I need them to be auto logged in (I will be using custom authentication on the asp.net side).
If you need the Facebook login or singup button then you do not need Facebook .Net SDK. You need to use Facebook Javascript SDK. Then you can use the <fb:login-button> XFBML tag.
If the user is already logged in to Facebook, the plugin can show the user's profile picture, if configured to.
Please refer here: https://developers.facebook.com/docs/reference/plugins/login/
Eventually I followed this tutorial:
http://www.aspsnippets.com/Articles/Login-with-FaceBook-account-in-ASPNet-Website.aspx
This was excellent and does exactly what I need.
I'd like a more capable search for my website. My current search is unable to ignore spelling mistakes and since our site is a multi lingual we really need this capability. Google has a great way of doing this.
I'm aware of the Google custom search, how do I install this to drupal without installing a module?
Thanks in advance!
Here is the documentation for how to add GCS to your web site by pasting some code into your template (or a block or node)
https://developers.google.com/custom-search/docs/element.
I did this method on http://www.greens.org.nz/ so see that web site for a working example.
I've tried pulling more data from facebook while using accounts-ui + facebook
but for some reason I'm not able to pull/display the data
I've tried editing facebook_server.js to pull email and age with no success in addition tried adding Meteor.loginWithFacebook function and still no luck
Could anyone attach an example how to do it properly?
This answer might help, although it's using the Github service and not facebook. But the flow should be the same.
Meteor login with external service: how to get profile information?