Sub-site Authentication? (FAQ / KB / Helpdesk etc.)
12
Rails
Does anyone have a suggestion to integrate your main Devise based Rails app with a secondary related site?
In my example I have a standard Rails app behind authentication with Devise. I want to a...
Dan Tappin replied
How to Build a Forum with Jumpstart Pro
3
Rails
Hey Guys,
I'm following along with the How to Build a Forum with Jumpstart Pro video (https://www.youtube.com/watch?v=ZSom4V-nYxA&t=903s) and I am running into the error "The action 'create' ...
Rob Thomas replied
Slack OAuth Error: Invalid client_id parameter
0
Rails
Hi guys! I'm getting this `OAuth Error: Invalid client_id parameter` after I insert the user creds.
Here is my code contains the `client_id` -
`devise.rb`:
``` config.omniauth :slack,
...
Ben posted
Unable to configure cancancan with active_admin in rails
0
Rails
I am trying to make a blog website. I am using `active_admin` and `cancancan` gem. Two controllers I have made are `Post`, `Category`.
**posts_controller.rb**
```
class PostsController < Inher...
pushpam kumar posted
devise_invitable: How to create a guest only after user confirmation by email
3
Gems / Libraries
I'm trying to create members of a team by using devise_invitable. But by looking the video related to devise_invitable, I'm not sure if I can create team members ONLY AFTER user confirmation by ema...
Jacob Montgomery replied
How do I handle Koala error
2
Rails
After watching [Facebook API and Auth Tokens with Koala](https://gorails.com/episodes/facebook-api-and-auth-tokens-with-koala), I decided to implement it. However, I made a mistake in my logic and...
Alexey replied
Why Wistia?
5
Javascript
Hi guys!
I'm looking to build an app which will rely heavily on users uploading videos and then playing them within the app.
I know Chris uses Wistia but it's pretty pricey, expecially .25c per v...
Daniel Weaver replied
How Do I Update Rails Servers from another Rails Server?
1
Servers
I have a Rails Server A in Country A, Rails Server B in Country B, and Rails Server C in Country C, all using Devise and Omniauth.A user can sign up in all 3 servers. But when he logs in to Server ...
Chris Oliver replied
Save facebook profile image in GCS
0
Gems / Libraries
Hi, I'm trying to implement a simple social login feature where users can log in using facebook account. Currently I'm using devise omniauth for authentication and carrierwave and fog-google for im...
Shashindran VIjayan posted
Rails 5.1.5 ( redirect to login but not saving data [omniauth + Devise]
2
Rails
Im Trying to make Oauth using multi model, User and Identity. i setup the one to many Relationship between User and Identity and write some code for each model like thisuser.rbclass User < ...
Michael Lazuardy replied
How to create a user profile with OmniAuth?!
0
Rails
Hi guys, I want to build an application where users are going to sign up with just their social media profiles and I don't want to use devise, the application should display user profiles with thei...
Muhammad posted
Open Source Vlog - Rails Generators | GoRails - GoRails
2
General
Hey Chris, I just want to say thank you for these screencasts. I've learned a lot, and I'm a bit more confident in my rails development skills to actually apply for Jr. Positions. Your videos have ...
Someone replied
API Tokens with Devise Token Authenticatable Discussion
18
General
Yes!! I have been waiting for this one. I need to watch it still, but thanks!
Roberto Brevé replied
Sign In With Twitter using Omniauth and the Twitter gem Discussion
37
General
Excellent episode Chris! 2 off-episode questions: why does your version of Chrome have a "People" menu and any chance you'll post this to github?
Someone replied
SSL_connect returned=1 errno=0 state=error: certificate verify failed
0
General
I am new to Ruby on Rails I have followed this tutorial:https://www.crondose.com/2016/12/guide-integrating-omniauth-rails-5-facebook-login-feature/
It lets me reach the login and even accept the c...
Brandon Morales posted
3rd party integrations using Oauth/omniauth
2
Rails
When creating a facebook login, you put `user = User.from_omniauth(env["omniauth.auth"])` inside `sessions_controller.rb` , so when a user goes to /auth/facebook it will prompt them to login via fa...
Masud Hossain replied
Solved
error when i click on follow button ... Relationship is not working
0
Rails
All i am trying to create follow and follwers relationship and i am experiencing some issues. Chris i think you should create a course on this as well. i am getting issue undefined method `id' for ...
khemlall mangal posted
Remove omniauth and convert existing users
4
Gems / Libraries
Hi everyone
I have LinkedIn omniauth sign in up and working on my Rails 5 app in accordance with the Devise guide: https://github.com/plataformatec/devise/wiki/OmniAuth:-Overview
I have some acti...
Nino Rosella replied
Solved
Any one help in pointing to a resource or webcast which explains how to interact with Google Drive API
3
Gems / Libraries
I am very new to rails and trying to build an app which can interact with Google DRIVE Api V3. I have scaffolded a Rails 5 App and used Devise Gem along with Google OmniAuth2 to authenticate and re...
Chris Oliver replied
Avoid devise automatic sign-in after email confirmation
1
General
After email confirmation, devise automatic sign-in users, how configure devise to avoid that?
```rb
# devise.rb
Devise.setup do |config|
config.mailer_sender = 'noreply@secret.com'
end
```
```r...
Bruno Wego replied