embedded-browser

Google OAuth for websites in embedded browsers

只愿长相守 提交于 2021-02-16 09:51:12
问题 Google no longer allowing embedded webviews as it is a disallowed_useragent for OAuth sign in. For most situations, this is completely fine and there is a workaround. However, I have run into a situation where this prevents websites from being able to use a web-server OAuth implementation. The Issue: Nginx PHP server running the Google PHP SDK, using their O-Auth implementation. This works fine on everything except embed browsers. Typically this is okay, however, if a user tries to sign up to

Open website from within eclipse's internal browser?

↘锁芯ラ 提交于 2020-01-03 17:19:28
问题 Could anyone help me with opening web pages from within Eclipse's internal (embedded) browser? I'm running Linux (tiling window manager) and Eclipse-3.7.2 side-by-side with browser and it's a pain. I want this to be able to comfortably read requirements from my code and at the same time code. This could be a question for superuser but it's Eclipse related so I guess I have better shot for an answer here. Thanks in advance. edit: I'm running gentoo linux and swt-3.7.1 with compiled in

javafx snapshot without showing application or Scene

你离开我真会死。 提交于 2020-01-01 11:48:36
问题 Hi i'm using JavaFx WebView to create Screenshot of HTML pages and it works fine but i wanted to know is it possible to do this without launching the application in Graphical Windows!! I mean aren't there any more lightweight method to get the screenshot then this: public class WebViewSample extends Application { private Scene scene; @Override public void start(Stage stage) { // create scene scene = new Scene(new Browser(snapshot), 750, 500, Color.web("#666970")); stage.setScene(scene); //

DocumentCompleted

*爱你&永不变心* 提交于 2019-12-25 04:08:39
问题 I am a starter with c# programming language. I placed a simple web browser into a window form. I assign a url address to the browser and I want to see if the browser successfully opened the link I provided. I know that there is a eventhandler called private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e) however, after assigning the url for the browser, I want to write something like if (webBrowser1_DocumentCompleted) { //my code here } is this

Wrong viewport/page height in embedded Facebook browser in iOS 9.x

自作多情 提交于 2019-12-20 18:31:45
问题 When opening the demo application from core-layout with the embedded browser in the Facebook app on iOS 9.x (at least), the footer element is not visible when the device is in portrait mode. If you rotate the device to landscape mode, the footer will be partially visible. However, the footer (with a button) should be completely visible. The first image shows how the demo app should look, while the second image shows how the demo app is missing the footer when viewed with the Facebook app's

How do I troubleshoot jQuery not working on a page loaded on an embedded device's browser?

荒凉一梦 提交于 2019-12-11 12:16:46
问题 I am developing a web application that is intended to run solely on an embedded device with its own web browser. This device browser is represented as being similar to (but not an exact match for) Firefox in the documentation. I would like to use the jQuery library to ease development. With this in mind I created a trivial test application using jQuery, tested it in Firefox (it works fine) and then tried running it on the device, where I found that only the non-jQuery JavaScript runs (I get

How do I get jQuery working on the ANT Galio browser?

一笑奈何 提交于 2019-12-11 12:05:25
问题 I'm developing a web application and would like to use the jQuery library to ease development. This application will be run on an embedded device running the ANT Galio browser. The User-Agent string for the device I'm testing against is: Mozilla/5.0 (compatible; ANTGalio/2.1.19.12.020.2.0.00; vxWorks-6.3) When I try to run a page using jQuery on this device however it fails silently. Based on the help from @Adam Terlson I've determined that jQuery 1.6.1 does not load correctly on this browser

jdk1.6 update 32 and JavaFX2.1 does work?

霸气de小男生 提交于 2019-12-08 21:02:37
i am trying to create a embedded browser using the JavaFX2.1 by using jdk1.6 update 32 however it looks like that all the programs are not working because of jdk1.6u32. but at the requirement its clearly mention that JavaFx2.1 will work with the jdk1.6update 32. Does anybody knows what is the reason? I am right now trying to run the sample programs which comes with javaFx2.1 and the below one http://docs.oracle.com/javafx/2/swing/SimpleSwingBrowser.java.htm while executing the above program with jkd1.6u32 and jdk1.7u4 program compiles and executes but doesn't display any page. I saw the below

jdk1.6 update 32 and JavaFX2.1 does work?

我与影子孤独终老i 提交于 2019-12-08 08:03:46
问题 i am trying to create a embedded browser using the JavaFX2.1 by using jdk1.6 update 32 however it looks like that all the programs are not working because of jdk1.6u32. but at the requirement its clearly mention that JavaFx2.1 will work with the jdk1.6update 32. Does anybody knows what is the reason? I am right now trying to run the sample programs which comes with javaFx2.1 and the below one http://docs.oracle.com/javafx/2/swing/SimpleSwingBrowser.java.htm while executing the above program

Embed basic WebKit + V8 in my app

自古美人都是妖i 提交于 2019-12-06 09:34:57
问题 I want a very basic HTML/CSS/JS renderer embedded in my app using WebKit and preferably V8. All I need is to always render one page and possibly make network and local requests (load JSON/msgpack). I don't need prefetch, tabs, omnibox, profiles and other chromium features, but from what I see looking at CEF is that it embeds a full featured chromium. Are there any other solutions? 来源: https://stackoverflow.com/questions/15155331/embed-basic-webkit-v8-in-my-app