The authorize tag has no wiki summary.
1
vote
1answer
41 views
MVC 4 Forms Authentication not working with [Authorize]
I'm learning MVC4 right now, and I am following the Pro ASP NET MVC4 4th edition book to create a Sports Store project.
I have always developed in webforms, and I am trying to figure out how the ...
0
votes
1answer
60 views
ASP.NET MVC4 repository injection to controller that depends on currently logged user
Let's say I am creating a "TODO list" web application with following features:
have ability to register/login users
each user has it's own TODO list that is independent from other users
So I've ...
1
vote
2answers
56 views
Set Authorize in MVC post method
I am create a forum website in mvc .it's same functionality like Stack Overflow . Any one view other any discussions ,But when anyone put the answer in RichBox,must Login then the answers is ...
1
vote
1answer
32 views
Can I use a ViewBag value to determine useable functions?
So I am currently using a ViewBag set in the login to determine if they can see admin only stuff. This is done this way because Roles.CreateRole, Membership.CreateUser and Roles.AddUserToRole is ...
0
votes
0answers
23 views
Membership.OpenAuth with Twitter works but keeps asking to Authorize App
I am using ASP.NET forms (not MVC) along with their out of the box templated solution for logging using Facebook, Twitter, etc (all wrapped up in Microsoft.AspNet.Membership.OpenAuth).
Everything ...
0
votes
1answer
37 views
Only Allow Login With Spring Security For Users With Certain Roles
I have a login page where I want to permit everyone to access the login.jsp. For example,
<intercept-url pattern="/login.jsp" access="permitAll()" />
But I only want to allow access to users ...
0
votes
1answer
66 views
Define the Authorize attribute in one place, for use with several ActionResults?
I use the Authorize attribute on controller or action, such as:
[Authorize(Roles="admin,user", Users="user1,user2")]
public ActionResult LogOn(LogOnModel model, string returnUrl) {
return view();
...
0
votes
1answer
115 views
How to create a custom attributes that derive from AuthorizeAttribute?
After a user has create an account, he/she needs to create a profile where he/she submits some information that will be used letter. I have 2 such controllers that need information from the user's ...
0
votes
0answers
162 views
MVC 4 Authorize Contoller Attribute Active Directory
I hope someone can help me. I've seen lots of posts on this question and I've been searching for hours, but I can't seem to get it to work. I've created the default MVC 4 Intranet Application and ...
0
votes
0answers
35 views
linkedin IE authorize error
I'll get a runtime error when I use IE 10 to authorize via js api:
IN.Event.on(IN, "systemReady", function () {
IN.Event.on(IN, "auth", function () {
console.log("Loggedin");
...
1
vote
2answers
106 views
MapMyFitness API authorization not using the correct callback
I have been working with MapMyFitness API. I had it working and the authorization ran smoothly. Within the last two months it seems that something has either changed with my code or with their API.
...
0
votes
0answers
98 views
.Net framework authorization module
We are writing an application that would like to authorize actions based on the type of user, using the traditional roles / users application. I would like to be able to allow/restrict based on roles ...
2
votes
1answer
50 views
ASP.NET MVC User is in all roles
In ASP.NET you can decorate a method as such
[Authorize(Roles="Moderator,Tester")]
Function ActionResult Foo()
{
return View();
}
This will limit access to users that are in one of the roles ...
0
votes
1answer
46 views
Deploying webapp authorization policy
I have a webapp script which access some resources that requires the user's authorize.
I update this script on short circles and noticed that after few deployments, users are getting the authorize ...
0
votes
0answers
62 views
Authorize request in time driven triggers
I'm working on a script which will be triggered by the time-driven trigger, and I have 2 questions
This script is published to users, and triggered by time with their account, so first time it runs, ...
0
votes
2answers
140 views
MVC 4 Authorization and strange redirection behavior
I'm in the final stage of my MVC 4 project , adding the authorization to the controller, start causing the redirection to home page each time the user made the submit or request and either he was ...
0
votes
0answers
101 views
Forms Authentication from .Net 3.5 to .net 4.0 on Windows server not authorized
I have several apps for a client written in ASP.Net 3.5. One is the main gateway which logs users on and passes a forms authentication ticket to other apps. All of this has bee working for years with ...
0
votes
1answer
105 views
Android - Facebook API - How to authenticate two times?
I have a problem while trying to log in on Facebook for the second time. The first time the user enter its credentials, I start to upload some pictures in the background into its Facebook account.
...
2
votes
1answer
324 views
MVC 4 Using Authorize with Custom Code Not Working
New to MVC 4. What I do not want to do is used the built-in Account management that comes with MVC 4. However, I have created an Account folder under Views, an AccountModel, and AccountController.
...
0
votes
4answers
2k views
FacebookSDK for IOS 6 using FBLoginView
I have an iPhone IOS 4.3 and iPad IOS 6 apps both using the same code to login a user. FBLoginView work on iPhone with IOS4.3. On my IPad app that use IOS 6 only show the dialog saying the Application ...
3
votes
1answer
283 views
Facebook ios sdk authorize opens two permissions request dialogs
Calling authorize from our game (using Facebook ios sdk 2.x or 3.1) results in two permissions dialogs in the Facebook App. Similar odd behaviour is demonstrated in the web browser if the Facebook App ...
0
votes
1answer
253 views
Facebook authorize dialog get “NetworkError: 500 Internal Server Error”
I develop login button on my website www.webdoanhnghiep.biz
Recently, this error happen.
Step 1:
window.onload = function(){
FB.init({appId:262362650517650, cookie:true, status:true, xfbml:true });
...
1
vote
2answers
780 views
Data level Authorization filter in ASP.Net MVC Entity Framework application
I was looking for a data level Authorization filter in my ASP.Net MVC 4 Application.
We are using Entity Framework for Data access.
The application need to display all the data but should restrict ...
0
votes
1answer
147 views
How to restrict access to a certain file in MVC
I am using ASP.Net MVC, and I was wondering how can I restrict access to a certain file. I read about using [Authorize] but it applies to controllers and actions. I try to use within the web.config ...
0
votes
1answer
77 views
one time activity using sqlite
I understand how to create a one time activity that saves to preferences to make the activity appear only once. But can someone show me how to save the "first open" screen to sqlite. I want to prevent ...
0
votes
2answers
1k views
MVC3 Authorize Attribute
How to add Roles and Users to the same action on a controller.
I tried:
[Authorize(Roles = "admin" , Users = "userName")]
public ActionResult Action()
{
....
....
}
[Authorize(Roles = "admin")]
...
0
votes
1answer
174 views
Authorization using Foursquare native iPhone app
Is there a way Foursquare native iPhone app can handle a url-scheme for authorization without opening the safari browser?
foursquare://authorize/app_ID
0
votes
0answers
165 views
Android Facebook SSO - authorize() method doesn't work properly
here it is my problem:
I want to enclose the Facebook logic into a class (let's call it fbConnect), and call the methods when I push one random button (login, logout, and so on).
I also have a class ...
0
votes
1answer
2k views
JAX-WS ws-security UsernameToken authorization on server
I have created a web service in netbeans with METRO. I modified my web service wsit config for using Usernametoken authentication (without encryption).
<?xml version="1.0" encoding="UTF-8"?>
...
0
votes
0answers
25 views
How to link a facebook user that added an app to a wordpress blog?
I'm trying to find a way to link users between facebook and wordpress, both ways. I found that using the WB-FB-Autoconnect plugin, I can automatically create a WB user whenever someone logs in the ...
0
votes
2answers
511 views
php sdk - get user_id without app authorization
is it possible to get the user_id from the facebook user without requiring the user to authorize the app?
I just want to get the user_id to identify the user.. the user dont require the id if the ...
0
votes
0answers
259 views
Android How to set timeout when authorize Facebook?
I have some code to connect facebook:
facebook.authorize(((Activity) ctx).getParent(), new String[] {},
requestCode, new DialogListener() {}
Usually it works fine. But sometimes I ...
5
votes
0answers
537 views
Android Facebook how to send app authorize request to friends?
I'm building an application that connect with Facebook. When user use my app, I can get their friends list and display it. Now I want add an option that user can send a request to their friend to ask ...
2
votes
1answer
1k views
android facebook authorization: onActivityResult not called
I build an android app connect with facebook, which has a button. When I click the button, the app will call facebook.authorize to ask permission. After return from the ask permission screen, it ...
0
votes
1answer
341 views
Android facebook login with OnClickListener
I want to create a facebook login button for my application.
My problem is, that I want to call 'authorize' with an OnClickListener, but eclipse marks the 'authorize' part as an error. It suggests ...
0
votes
1answer
189 views
MVC [Autorize] plus Roles from string
Hey I got some idea but problem is i can't make this work.
in MVC we can use [Authorize] to "protect" some actions/controllers, we can make next step and give some persmission for a Roles and Users.
...
2
votes
0answers
250 views
MVC + FormsAuthentication: Return URL for POST action with AuthorizeAttribute
I'm making an event planning website similar to meetup. Guests are welcomed to browse the site and not have to log in util say he clicks on "Join" for an event he's interested in. Because this creates ...
1
vote
5answers
1k views
How to authorize a set of controllers without placing the annotation on each one?
I have sets of controllers which are each used for each authorization type. For example, a class A authorization will have a set of controllers each which require class A authorization. Is there a way ...
2
votes
2answers
3k views
MVC 3 Authorize custom roles
I am new MVC 3 user and I am trying to make admin through SQL database.
First of all, I have Customer entity and admin can be defined through admin field which is boolean type in Customer entity.
I ...
1
vote
1answer
130 views
How quickly is the deauthorize callback pinged?
As the question says basically.
After going to Privacy Settings and removing the app, how long does it take for Facebook to ping the deauthorize URL specified?
I'm trying to find out if my page ...
0
votes
2answers
333 views
asp.net mvc3, Authorize attribute redirects to wrong login page
I have a page that needs to be secured. I add [Authorize] attribute to that action method. if you are not logged in, you will be redirect to the login page everytime you visit that secure page.
it ...
0
votes
1answer
602 views
Facebook C# API return 400 when deauthorizing app
Using the Facebook C# API release version from 12/20/2011, I'm calling the facebook client Delete command with "/{facebook id}/permissions" I get a 400 Bad request returned to me. I've tried the ...
7
votes
3answers
8k views
Facebook authorize w/permissions request yield “Page Not Found”
Somewhere along the way in the past few weeks, the authorize Facebook call in iOS fails with a "Page Not Found". This happens for any user that has not installed the app or if the app's permissions ...
1
vote
1answer
666 views
MVC3 generate list of controllers/actions with their attributes (esp. action filters)
Is there a reasonable way to generate a complete list of all controllers/actions in a project, along with their various attributes - notably action filters?
Our project is relatively small now, but ...
0
votes
1answer
1k views
php-sdk 3.1.1 can't get $facebook->api('/me') for test user and no authorization request displays
When I use the following code, $user_profile = $facebook->api('/me'); will show the info for me, the admin user, but when I switch to a test user the permissions dialog never displays for the test ...
0
votes
1answer
133 views
Adding twitter into PHP form in CMS
Hello I have all sorts of tutorials for authenticating with oAuth, but it seems like everyone else has one piece of the puzzle that I don't.
In my CMS I am editing the controller, where info gets ...
0
votes
1answer
271 views
independent authenticated sessions with ASP.NET MVC 2 and Areas
i am developing a little CMS website (frontend area) where users can see news, explore products, etc
and in the same site i have a backend area where CMS's content and ERP features are managed, this ...
-1
votes
1answer
533 views
Facebook SSO authorize in safari but not facebook app in my iphone
I am following the guide exactly to integrate with Facebook. A weird issue that i run into is that, if I,
uninstall the facebook app in iphone
OR change the facebook.m implementaion to disable ...
0
votes
1answer
724 views
Setting up custom Authorize roles for MVC3
Currently my controller looks like this:
public class ProductBrandsController : Controller
I've read online that I can apply the [Authorize] decorator to each Action, but also to the entire ...
0
votes
2answers
775 views
Authorize all actions under specific controller (example: adminController)
i want to authorize all action under adminController. how can i do that. i have a database with Roles and User.
1. Administrator
2. Member
i want only Administrators can access to all action in ...

