Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I am working on an application at work that will currently uses our ldap to allow login. We are looking into adding the ability for Single Sign On. The concern that I am currently trying to figure out is: Does APEX support multiple login types?
If the user's SSO fails we'd like to drop them at the current ldap login page and allow them to log in that way. If anyone has any idea on how to do this, please just point me in the right direction.
I was trying to find an answer on here and google, but I must be blind or using the wrong keywords.
Thanks,
-Z
Check out https://ora-00001.blogspot.com/2018/02/apex-authentication-with-microsoft-account.html and section "20.4.3.9 Social Sign-In" of https://docs.oracle.com/database/apex-18.1/HTMDB/managing-application-attributes.htm#GUID-69485470-823B-4CC0-9E11-1CF144054F53
Basically if you are using the Social Sign-in you can switch between authentication schemes in the same APEX session.
Regards
Stephen
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 1 year ago.
Improve this question
We have Alexa Skill for our application which needs account linking.
exploring the botium box for automating conversations, it is working fine.
but I am looking for adding account linking process in it
Is this possible with botium box.. if not, any workaround?
You cant link an account using Botium.
The maximum you can do is test your flow using a linked, or not linked account. But you have to link that account on your own, using the Simulator of Actions console for example.
You can read about it here: https://github.com/codeforequity-at/botium-connector-google-assistant#account-linking
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I have a product consisting of hundreds of separate websites - each of which has a unique URL. Unfortunately it is not feasible for me to create a separate Facebook App ID for each website. Is it possible to configure one Facebook App ID that can be shared/used across all websites?
I know it's possible with subdomains but haven't had any luck finding much information about my situation.
Thanks!
There isn't. The only way it so redirect to a login page that is the same for all.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
There are two popular bundles for connecting facebook and Symfony2-based applicaions: FOSFacebookBundle and HWIOAuthBundle.
Which one is better to manage simple facebook connect?
I have had problems implementing FOSFacebookBundle, exactly with the connect option... which was not persisting the tokens in the users entity (FOSUserBundle) without extensive overriding of provider methods.
On the other hand HWIOAuthBundle worked like a charm, the downside of this one being that it needed a bit of work to make it look like FOSFacebook.
I even read a comment on a blog... or github bug report... can't remember exactly, where a FOS dev encouraged the use of HWI bundle because it's being maintained and developped in a better way then the FOS one. (found it. first comment on this post https://coderwall.com/p/qkdzca)
Way to setup HWIOAuthBundle that works: https://gist.github.com/danvbe/4476697
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
i want to make Facebook type friend search in my zend based application,in which data come from database and when user click on his searched friend he will go to his profile page.plese suggest me as i don't able to find good example on google.please someone help me and tell me step by step for doing this.
http://www.9lessons.info/2009/06/autosuggestion-with-jquery-ajax-and-php.html
checkout this tutorial it helps me lot do the same in my zend based application
watched this: http://www.zendcasts.com/autocomplete-control-with-zendx_jquery/2010/07/ Really great. It works perfectly.
at some stage you have to make some customize to call user profile on click event of list
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
How can I set up a business facebook page that when a user enters an email it will run through the company's database and ensure they are not already there before inputting the information into the database. I would like it to display a message to the user like, "Thanks you are already registered with us". I also need it to allow the user to still have access to the page. Sorry if this seems basic, but I have spent quite a while researching this and I believe it would be putting additional code in the authentication part, but I haven't been able to figure it out. Thanks!
Jennifer
Yes - you are correct - the functionality you are looking for would require additional authentication code in the form of server-side scripts. Only in that way would you be able to authenticate your users by cross referencing username/password or email values in your company's database.
If you yourself are a programmer then I would recommend looking into PHP for the server-side scripting and a mysql database (if the database does not already exist in another form - cringe).
Both PHP and mysql are free to use and there is a large knowledge base on the internet.
Here are some links to get you started.
Don't be afraid to jump in - the water is lovely :P
Basic PHP Tutorial from Zend
Basic Mysql Tutorial from Tizag
Good luck and happy coding!