Questions tagged [persona]

Mozilla Persona is a decentralized authentication system for the web based on the open BrowserID protocol prototyped by Mozilla.

Persona was launched in July 2011 and shares some of its goals with some similar authentication systems like OpenID or Facebook Connect, but it is different in several ways:

  • it uses email addresses as identifiers
  • it is more focused on privacy
  • is intended to be fully integrated in the browser.

The privacy goal is motivated by the fact that the identity provider does not know which website the user is identifying. It was first released in July 2011 and fully deployed by Mozilla on its own websites in January 2012.

33 questions
2
votes
1 answer

Implementing Persona Idv on NextJS

We are attempting to use an embedded Persona flow on our NextJS app. Code as follows: export default function PersonaTest(props) { const PersonaInquiry = dynamic(() => import('persona').then((mod) => mod.Inquiry), { ssr: false }); const…
2
votes
0 answers

AngularJS $scope not updating with Mozilla Persona

This one has me stumped. I've tried without $scope.$apply as well as using $scope.$watch. How do i update isLoggedIn when onlogin is called? My controller code myControllers.controller('MainCtrl', ['$scope', '$http', function ($scope, $http) { …
1
vote
1 answer

How to add persona react-native sdk in android

I'm trying to implement digital verification in my app. I have done the iOS implementation now working on android In persona they have no documentation on the react-native page for android. What I should do to move to native implementation or search…
Kashif Ahmed
  • 803
  • 9
  • 20
1
vote
1 answer

Android App Digital Persona couldn't find "libdpfr6.so"

I am developing an Android App that uses fingerprint reader Digital Persona 4500 UareU. When I trying to get the readers I get this error: E/AndroidRuntime: FATAL EXCEPTION: main java.lang.UnsatisfiedLinkError: …
dcueva
  • 33
  • 1
  • 5
1
vote
4 answers

DNN 9 Persona Bar not visible after login

I am using DNN 9. I recently upgraded DNN from version 9.1.1 to 9.3.2. When I Login, the left side of DNN disappears with only the logo od DNN. Other options like settings,edit etc are not seen. Any Idea as to what the issue might be?
1
vote
2 answers

DNN - print page without persona bar

I'm trying to print a page from my custom DNN module, without the persona bar, while logged in as an admin. I tried creating a custom skin but still can't prevent the persona bar menu titles from displaying on my print. I've posted this issue on the…
1
vote
1 answer

Django reload and re-login after logout

Django v1.7 I've been working through this book (which is fantastic, btw), and I thought I had everything working. All of the tests (functional and unit), but for some reason, every time I hit the logout button, I am immediately logged back in. I am…
muppetjones
  • 296
  • 3
  • 14
1
vote
0 answers

Using Mozilla Personal Verifier

I am doing a front-end heavy web app which does Facebook login already with pure Javascript. Now I wan to include Mozilla Persona, I tried to use this URL as verifier: https://verifier.login.persona.org/verify But browser is complaining that there…
quarks
  • 33,478
  • 73
  • 290
  • 513
1
vote
0 answers

Persona server 5.1 dramatically slows on reads on SSD server

We're trying to migrate to an 8x SSD RAID on Linux software raid on Linux 3.0.3. Our previous server config was 96GB of memory which was rather expensive per month. Our goal is to migrate to SSDs which are about 1/2 to 1/3rd the price. The problem…
burtonator
  • 451
  • 1
  • 5
  • 11
1
vote
1 answer

How to authenticate users in FirefoxOS using BrowserID / Persona?

I am trying to write an FirefoxOS app for my portal which uses Mozilla Persona for authentication. How I should proceed if I want to achieve: Allow users of my app to signup to my portal using Persona Allow users of my app to login to my portal…
bluszcz
  • 4,054
  • 4
  • 33
  • 52
1
vote
1 answer

Cannot start node site with npm start

I am trying to get a simple site using Mozilla Persona installed locally on ubuntu 12.04. However, I ran into problems getting it to install and run. I get an error message about node-waf not found if I am using the latest version of nodejs…
1
vote
1 answer

How to make an implicit account using Mozilla Persona "workflow"

I've been looking at Mozilla Persona but I can't figure out how you would get a user to make an account on my site without having to fill out a normal "Sign Up" form. This is how I understand the process: User clicks on the Persona login…
mlathe
  • 2,375
  • 1
  • 23
  • 42
0
votes
0 answers

Using Sendgrid's SSO Teammate Personas, Can "create" and "send" be separated?

I have read the sendgrid teammate permissions page that talks about personas that can be assigned to SSO users. I'm not finding an answer to this simple goal. We desire to have one group of "email creators" and one group that can "authorize the…
WEBjuju
  • 5,797
  • 4
  • 27
  • 36
0
votes
1 answer

How do we get inquiry fields from Persona API?

I am trying to extract the fields from an inquiry. Based on the doc https://docs.withpersona.com/docs/inquiry-fields#reading-fields, it seems like that field should be present on a webhook event when "inquiry.compeleted" happens. However, I don't…
0
votes
0 answers

how to work with persona U.are.U 4500 with flutter mobile app?

how can i do these: Attach persona U.are.U 4500 to mobile and for debugging? If i use this package https://pub.dev/packages/persona_flutter, how can i get "Templete Id".
1
2 3