I am using the script mentioned below to validate all the links in a web portal, but unfortunately there is a "logout" button link there due to which when I execute the script.
It gets logged out and hence the testing gets stopped. Can anyone help me to deselect that particular "logout" link and test all the other link?
Related
Will I able to invoke a button action ( HTTP Post/Get) through swift? I searched few posts and I am able to retrieve the contents from a web page. But I am not able to post anything. Say, web page has a login screen and the user needs to enter user name and password and click submit. How do I do this? note: The website I am using doesnt use URL parameters
Any help is highly appreciated. Thanks
I have tested action script under the article "Apps Script Quickstart".
After the script runs, check my inbox for an email sent from myself with a Go-To Action button, but i can't see the Action button on inbox.
Can anyone help me.
thanks,
You didn't post your script, so I'm not sure why you're not seeing the action button.
You also have the option of using the following Gmail Schemas Tester below with your Gmail account:
http://gmail-actions.appspot.com/
On the bottom left, you can select the action you'd like to test. For example, I selected "Go-to action" and the sample was sent to my Gmail.
I have create a brand new MVC application using the Internet Template. I have set up the application to use Google to login and register.
All of this works as expected.
What i want to know is, is it possible to automatically log the user into the application after he registered,if he is logged into google at that time, in stead of redirecting him to the login page, so that he clicks the "Login with Google" button.
If you know that you're always going to be logging in with Google (and no other provider), you can set the redirect to go to the target of the "Login with Google" button. Just look at the link target (href) of that button, and change your redirect for unauthenticated users to use that URL instead of the login URL. (You just have to make sure that it'll still be possible for a new user to register. :))
The app I'm currently working on requires OpenGraph custom actions.
I have created and successfully published custom actions to my Test User.
However when I enter the Review Status page I am still unable to click Submit for the actions, I simply get a tooltip informing me that this action must be published.
Any and all help in this matter would be greatly appreciated.
Turns out a special test user by the name of Open Graph Test User is created and that's the one who needs to publish the actions.
So this is a canvas app, intended to run in the FB chrome.
I'm using the FB php SDK.
I'm creating my login url by:
$loginUrl = $facebook->getLoginUrl( array('scope'=>'email,publish_actions', 'redirect_uri'=>$fbCanvas));
then using this script to redirect:
print "<script> top.location.href='" . $loginUrl . "'</script>";
Instead of seeing a "regular" fb app auth dialog, such as:
What I want to see
I get a dialog like this one:
What I see instead
Any ideas what I'm doing wrong?
If the new user clicks on the Okay button, they are logged into the app, redirected correctly and everything works ok, I just want it to look like / work like every other app.
Thanks!
Facebook is re-styling the Login dialog (again), see https://developers.facebook.com/docs/concepts/login/permissions-login-dialog/#login-dialog
As usual with Facebook, this rollout does not affect all users or all apps at the same time, but is gradually rolled out. So for a while users might see both versions of the login dialog, but eventually all apps will use the new one.
You are doing nothing wrong.
I suspect Facebook has changed the way it displays the Authorization/Permission window depending on the data available for the Application. If your application lacks 'App Detail', 'Image' , 'Privacy Policy Link' etc. then you get the authorization window as What major apps show else you would get the window you are getting right now.
Earlier there was no distinction as such but since this month it might have changed as I earlier used to get the full fledged Authorization window but not now.