How can I create a login page that logs into another website? - html

I have a login url that a client doesn't want to use, instead they would like to have their own login page that logs into the existing webpage without the existing webpage being seen.
The exiting url is https://diamond.realtimedespatch.co.uk/web/user/login.htm
The client wants their own logo's shown on their own login page.
Many thanks in advance.

If i understand your problem correctly, you need to use SSO ( Single singn on) on your project. You will get more details for SSO at https://auth0.com/docs/sso/single-sign-on

Related

Application name on Authorization page didn't change in 3-Legged auth

We changed our production application name and description by forge.autodesk.com/myapps. But on authorization page we still see the old one.
Can we force to refresh it somehow?
Clearing browser cache didn't help. We've been wainting for 2 days but it still doesn't work.
Just got confirmation from Engineering that they've pushed the fix to production.
If you create a new app, the authorization page should show the name of the app properly. If you still want to use any impacted app, please edit and save the app.

getting information from a website in processing?

I am currently making a processing program, where a part of it will be to acess some information from at website. The website will be an HTML file, where some information is stored, which i need to acess and parse. I know how to open a html file, but my problem is that it is supposed to acess a list, which is generated after a login on the website. How do i do that?
This is the website, right after loading the HTML file:
http://i.imgur.com/kGIkyle.png
After a login, the website will begin to spit out data every two seconds.
I wanna acess the data in the ordered list, and i wanna acess it every two seconds in my processing program. How do i do that?
This is the website, after a login, after a moment.
http://i.imgur.com/O743fNJ.png
When you use a web browser to submit a login, you're really interacting with the server. Usually the web browser submits a POST request containing the login information (like a username and password), and the server responds with the next webpage to load.
The details of this are going to depend on the website you're interacting with. Some websites might use AJAX to submit the data and then trigger some JavaScript to run.
The point is, you're going to have to understand exactly how the underlying web server and webpage works. Then you're going to have to use the rules of those interactions to issue the appropriate requests from your Processing code.
It might be as simple as submitting the login credentials in the url itself and then just scraping the information from the webpage.
More likely, you're going to have to interact with some kind of web API and do the requests yourself. Google "Java post request" for more info.
Of course, all of this assumes that the website is open to people using it. If this website isn't yours, it could also be locked down and unavailable to you.

Is there any way to delete the URL address whenever a user enters my website?

I have a website which I want to hide its URL the second a user enters it.
Is this possible in any way?
This is done server-side. You cannot change the url of the site with let's say javascript or php. If you write your .htaccess file to point to that url, or rename the url of your site on the server to change what the user is hitting is the way to do that.
You can check here for the .htacccess way of doing it.

Is it possible for me to put a default url for the web app icon on iPhone?

I am creating a web app and when I save it to the screen, it only saves to the url I am on. Is it possible to alter the HTML so that if its being saved to the homescreen, it goes to a specific url?
No, it's not possible to change the URL that is linked to the web app bookmark.
A workaround could be to redirect the user to the desired page. You can for example store client information on the server (cookies/session) or device (localStorage). So when the user visits your site you can redirect to the homepage if the client device has no session or if some localStorage value is not set.

Open a pdf file in a webpage(Wordpress) without giving its URL?

This problem is a little different, so I will try my best to explain it as much as I can. I would really appreciate any help I can get on this issue.
I have a website where I have a registration form after which the users can view a report. This report is saved on the server and thus people can view it directly as well (by just going to the url of the pdf). I want to find a way such that users have to register in order to view the report. I don't want to use flash as I know mobile browsers have issues with it (Apple). Password protection is also something which I want to avoid. Is there any way where users have to go through the registration in order to view the report? THANKS A LOT
The website is in Wordpress btw.
Try out this plugin: User Access Manager
In that plugin, make a user group and allow access to view your pdf file to that user group only.
This plugin will Redirecting users to other pages if no access.
Try it out. Cheers !!!