Questions tagged [anonymous-users]

Questions involving this tag should cover topics related to identifying a user for the purpose access control in relation to a product or service that may span multiple sessions over an indefinite period of time. Such a user could be either an individual person or some implementation of a system, such as an API client.

An anonymous user may be:

  • accessing an installed or web-based application as part of a trial
  • accessing an installed or web-based application for the purposes of secrecy
  • associated with a usage quota for abuse prevention
  • granted temporary/guest access to edit or view a resource

Questions related to identifying a user for the purpose of advertising or analytics are considered off-topic for this tag. Depending on the context, questions regarding strategies to deanonymize a user may also be considered off-topic (such as deanonymizing a Sign in with Apple user).

Related tags:

Web-based anonymous access is often associated with methods of storing user identifiers and tokens such as:

68 questions
0
votes
1 answer

Rails 3 - Allow edit without update?

Here's the situation: I have a Rails 3 app that let's users add tags to a model (entry). However I haven't figured out how to allow users (all anonymous) to just view and add new tags without editing the existing ones. I'm not using any plugin like…
0
votes
2 answers

ASP.NET CORE - Online Shop Order As Guest / Anonymous User

I am developing an online store and I want customers to have the opportunity to order without logging in to the system, ie to have the opportunity to order as a Guest or anonymous user. Any ideas? Thanks in advance!
0
votes
4 answers

Possible solutions for keeping track of anonymous users

I'm currently developing a web application that has one feature while allows input from anonymous users (No authorization required). I realize that this may prove to have security risks such as repeated arbitrary inputs (ex. spam), or users posting…
Trevor
  • 1,333
  • 6
  • 18
  • 32
0
votes
1 answer

Django Rest Framework is detecting AnonymousUser on PUT requests

I have this viewset class OrderItemViewSet(viewsets.ModelViewSet): serializer_class = OrderItemSerializer def get_queryset(self): print('Current User', self.request.user, self.action) return…
0
votes
1 answer

Keeping track of non registered user in a django website

I'm making a django website and want to keep record of the people who didn't registered in my website like what all they searched in my website and all.For that what should I do to get all that information??
user11815659
0
votes
1 answer

Jhipster cannot use anonymous user before login

When I visit to jhipster websit pre-login, it always displays error message (User could not be found). In jhipster project, where to setup anonymous user for pre-login?
0
votes
2 answers

Sharepoint groups and anonymous access

I have crated a custom site that would provide registration for new user who wold like to access my sharepoint site with asp.net membership account. When new user clicks register, i would like to send email notification about new user to all members…
matt99
  • 869
  • 2
  • 8
  • 19
0
votes
1 answer

Checking where the user came from (stumbleupon)

Possible Duplicate: Track where users come from in PHP? How can you check if a (unique) visiter/user was directed to your site from stumbleupon, google or facebook in php?
0
votes
1 answer

JHipster "anonymoususer" login

I generated a monolithic application using JHipster and it has by default generated some users for me (admin,system,user and anonymoususer) "anonymoususer". I tried to log in with anonymoususer but I can't because I don't have the password. Can…
Rami Nassar
  • 303
  • 1
  • 4
  • 13
0
votes
2 answers

Link Django-cookie sessionId to Channels 2.02 connection?

Thank you all for reading my first post. Using Django 2.02, Django-channels 2.02. I wish to store informations that get send from the frontend to the backend into Django session store. My problem is that the Django-channels session scope only seems…
0
votes
2 answers

Spring-security blocking anonymous users from pulling data from MongoDB

I have a Spring Boot web application that uses Spring Security. The index.html page contains a method call (POST) to the controller that loads objects from MongoDB into a ArrayList and returns it so it can be displayed on the front page. It seems…
0
votes
0 answers

Django route returns AnonymousUser error even permission to route stays IsAuthenticated

User extends AbstractBaseUser. UserViewSet extends ModelViewSet. my route @list_route(methods=['patch'], permission_classes=[IsAuthenticated]) But after sending request to route, returns error 'AnonymousUser' object has no attribute '_meta'. How…
DDS
  • 1
  • 1
0
votes
1 answer

How to store different (random & temp) backend data for each user, without login?

What's the simplest way to persist small backend data for each user? I'm working on a program that will make a random choice for each user, a single-word string, and I'm just starting to decide how to architect it. Although the choices are random, I…
Rosensweig
  • 55
  • 1
  • 7
0
votes
0 answers

SPA guest checkout

I am building an SPA app with a guest checkout. During this, I call one API to create the guest user's address and name data, and then another to add other details about the checkout. Is there a way to ensure that the current guest/anonymous user…
Terry Carter
  • 61
  • 1
  • 2
0
votes
1 answer

Drupal search yielded no results for anonymous user

I am using Drupal 7.50 Search returns no results for user either he is login or not(Except admin user). Only admin user can Fetch the search result , but not the other user. (1) successfully returns results for Administrator account. (2) returns…
Rajesh Baskaran
  • 322
  • 1
  • 11