{"id":24227,"date":"2024-02-15T14:53:34","date_gmt":"2024-02-15T22:53:34","guid":{"rendered":"https:\/\/docs.extraview.com\/v25\/book\/static-web-page-access-1\/"},"modified":"2025-02-24T15:43:40","modified_gmt":"2025-02-24T23:43:40","slug":"static-web-page-access-1","status":"publish","type":"page","link":"https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/static-web-page-access-1\/","title":{"rendered":"Static Web Page Access"},"content":{"rendered":"<p>A common requirement is to be able to integrate ExtraView seamlessly into your own web site, allowing your own users to use a subset of ExtraView\u2019s capabilities. Most often, these users will be anonymous within ExtraView (i.e. they will not have their own user name and password), but their user details will be trapped as part of the record, for follow up.<\/p>\n<p>ExtraView allows you to call it remotely, typically using a guest login, with limited privileges, to prevent &#8220;hacking&#8221; by an irresponsible user. The steps to achieving this are typically:<\/p>\n<ul>\n<li>Create or use an existing GUEST user group within the ExtraView administrative function<\/li>\n<li>Create a guest user account within ExtraView<\/li>\n<li>Use the Security Privileges to limit the fields that the GUEST user group can see and update. These will vary with the installation<\/li>\n<li>Implement HTML forms within your own website on pages. Most typically, there will be two such pages. One will allow your users to submit new issues, and one will allow users to search ExtraView for specific issues or with a keyword search<\/li>\n<li>This may also be coupled with creating specific fields within ExtraView that are used to store information that you want your users to see, as opposed to fields that are for internal use by your engineering or QA or other staff<\/li>\n<li>You may also use the privacy features of ExtraView. The ExtraView Administration Guide will help you understand this feature in depth. Issues can be either Public or Private. This means that only users internal to your company and users within the company that reported the issue have access to the records if they are Private. If the issues are Public, then everyone can see them. You may also take a more sophisticated approach, by using Privacy Groups. These allow you to set up groups of individuals that can see specific issues, irrespective of their user group or other privileges.<\/li>\n<\/ul>\n<h3>HTML Pages that access ExtraView remotely<\/h3>\n<p>The following example shows how suitable pages can be designed. They all use the ability of ExtraView to support anonymous access, assuming the administrator has provided this facility. See the ExtraView Administrator\u2019s Guide for more information.<\/p>\n<p>First, let us design a screen that allows our anonymous users to add new issues to ExtraView. It looks like this:<\/p>\n<p><img decoding=\"async\" style=\"width: 80%;\" src=\"\/v25\/extraview-media\/images\/api\/static_page3.png\" \/><\/p>\n<p>The HTML source to this page is:<\/p>\n<table>\n<tbody>\n<tr>\n<td><code><span style=\"font-family: courier new,courier,monospace;\">&lt;html&gt;<br \/>\n&lt;head&gt;<br \/>\n&lt;title&gt;Submit an Issue to MyCo&lt;\/title&gt;<br \/>\n&lt;meta http-equiv=\"Content-Type\" content=\"text\/html; charset=iso-8859-1\"&gt;<br \/>\n&lt;\/head&gt;<br \/>\n&lt;script&gt;<br \/>\nfunction setState(button) {<br \/>\nif (document.AddIssue.statevar.value != \"Submitted\") {<br \/>\nbutton.form.statevar.value = button.name;<br \/>\n}<br \/>\nif (button.value==\"Submitted\") {<br \/>\nalert(\"This form has already been submitted. Please wait.\");<br \/>\n}<br \/>\nif (button.name ==\"Submit\") {<br \/>\nif (document.AddIssue.short_descr.value == \"\") {<br \/>\nalert(\"You must enter a title for the issue\");<br \/>\nreturn;<br \/>\n}<br \/>\nif (document.AddIssue.description.value == \"\") {<br \/>\nalert(\"You must enter a description for the issue\");<br \/>\nreturn;<br \/>\n}<br \/>\ndocument.AddIssue.statevar.value = \"INSERT\";<br \/>\nbutton.value = \"Submitted\";<br \/>\ndocument.AddIssue.submit();<br \/>\n}<br \/>\n}<\/span><\/code><code><span style=\"font-family: courier new,courier,monospace;\">&lt;\/script&gt;<br \/>\n&lt;body bgcolor=\"#FFFFFF\"&gt;<br \/>\n&lt;p&gt;&lt;i&gt;&lt;font color=\"#0000FF\" size=\"+1\"&gt;&lt;b&gt;Report a New Issue to MyCo&lt;\/b&gt;&lt;\/font&gt;<br \/>\n&lt;\/i&gt;&lt;\/p&gt;<br \/>\n&lt;p&gt;Please complete this form to submit your issue. Your issue will be entered<br \/>\nautomatically in our support system and you will receive a response from us. &lt;br&gt;<br \/>\n&lt;hr&gt;<br \/>\n&lt;br&gt;<br \/>\n&lt;form name=\"AddIssue\" ACTION=\"http:\/\/myco.extraview.net\/myco\/ExtraView\/ev_api.action\"<br \/>\nMETHOD=\"GET\"&gt;<br \/>\n&lt;INPUT NAME=\"statevar\" TYPE=\"HIDDEN\" VALUE=\"INSERT\"&gt;<br \/>\n&lt;INPUT NAME=\"status\" TYPE=\"HIDDEN\" VALUE=\"SUBMIT\"&gt;<br \/>\n&lt;INPUT NAME=\"assigned_to\" TYPE=\"HIDDEN\" VALUE=\"JIM.SMITH\"&gt;<br \/>\n&lt;INPUT NAME=\"product_name\" TYPE=\"HIDDEN\" VALUE=\"CUSTOMER_ISSUES\"&gt;<br \/>\n&lt;table border=\"0\" cellpadding=\"2\"&gt;<br \/>\n&lt;tr&gt;<br \/>\n&lt;td width=\"220\" valign=\"top\"&gt;<br \/>\n&lt;div align=\"right\"&gt;Enter title&lt;\/div&gt;<br \/>\n&lt;\/td&gt;<br \/>\n&lt;td valign=\"top\" width=\"625\"&gt;<br \/>\n&lt;input type=\"text\" name=\"short_descr\" size=\"56\" maxlength=\"255\"&gt;<br \/>\n&lt;\/td&gt;<br \/>\n&lt;\/tr&gt;<br \/>\n&lt;tr&gt;<br \/>\n&lt;td width=\"220\" valign=\"top\"&gt;<br \/>\n&lt;div align=\"right\"&gt;Enter description&lt;\/div&gt;<br \/>\n&lt;\/td&gt;<br \/>\n&lt;td valign=\"top\" width=\"625\"&gt;<br \/>\n&lt;TEXTAREA WRAP=\"virtual\" NAME=\"description\" COLS=50 ROWS=4&gt;&lt;\/TEXTAREA&gt;<br \/>\n&lt;\/td&gt;<br \/>\n&lt;\/tr&gt;<br \/>\n&lt;tr&gt;<br \/>\n&lt;td width=\"220\" valign=\"top\"&gt;<br \/>\n&lt;div align=\"right\"&gt;Your name &lt;\/div&gt;<br \/>\n&lt;\/td&gt;<br \/>\n&lt;td valign=\"top\" width=\"625\"&gt;<br \/>\n&lt;input type=\"text\" name=\"customer_name\" size=\"40\" maxlength=\"40\"&gt;<br \/>\n&lt;\/td&gt;<br \/>\n&lt;\/tr&gt;<br \/>\n&lt;tr&gt;<br \/>\n&lt;td width=\"220\" valign=\"top\"&gt;<br \/>\n&lt;div align=\"right\"&gt;Your email address&lt;\/div&gt;<br \/>\n&lt;\/td&gt;<br \/>\n&lt;td valign=\"top\" width=\"625\"&gt;<br \/>\n&lt;input type=\"text\" name=\"customer_email\" size=\"40\" maxlength=\"40\"&gt;<br \/>\n&lt;\/td&gt;<br \/>\n&lt;\/tr&gt;<br \/>\n&lt;tr&gt;<br \/>\n&lt;td width=\"220\" valign=\"top\"&gt;<br \/>\n&lt;div align=\"right\"&gt;Your phone number&lt;\/div&gt;<br \/>\n&lt;\/td&gt;<br \/>\n&lt;td valign=\"top\" width=\"625\"&gt;<br \/>\n&lt;input type=\"text\" name=\"customer_phone\" size=\"40\" maxlength=\"40\"&gt;<br \/>\n&lt;\/td&gt;<br \/>\n&lt;\/tr&gt;<br \/>\n&lt;tr&gt;<br \/>\n&lt;td width=\"220\" valign=\"top\"&gt;<br \/>\n&lt;div align=\"right\"&gt;&lt;\/div&gt;<br \/>\n&lt;\/td&gt;<br \/>\n&lt;td valign=\"top\" width=\"625\"&gt;<br \/>\n&lt;\/td&gt;<br \/>\n&lt;\/tr&gt;<br \/>\n&lt;tr&gt;<br \/>\n&lt;td width=\"220\" valign=\"top\"&gt;<br \/>\n&lt;div align=\"right\"&gt;&lt;\/div&gt;<br \/>\n&lt;\/td&gt;<br \/>\n&lt;td valign=\"top\" width=\"625\"&gt;<br \/>\n&lt;input type=\"button\" name=\"Submit\" value=\"Submit\" onClick=\"setState(this);\"&gt;<br \/>\n&lt;\/td&gt;<br \/>\n&lt;\/tr&gt;<br \/>\n&lt;\/table&gt;<br \/>\n&lt;br&gt;<br \/>\n&lt;br&gt;<br \/>\n&lt;hr&gt;<br \/>\nCopyright \u00a9 2002 ExtraView Corporation&lt;br&gt;Powered by ExtraView<br \/>\n&lt;\/form&gt;<br \/>\n&lt;\/body&gt;<br \/>\n&lt;\/html&gt;<\/span><\/code><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Next, we want to design a web page that will allow the user to search for an issue, either by the ID or by keywords. We are setting up this page to only search for OPEN issues related to a product named OUR_PROD. The page will look like this:<br \/>\n<img decoding=\"async\" style=\"width: 80%;\" src=\"\/v25\/extraview-media\/images\/api\/static_page4.png\" \/><\/p>\n<p>The source to this page is as follows:<\/p>\n<table>\n<tbody>\n<tr>\n<td><code><code>&lt;html&gt;<br \/>\n&lt;head&gt;<br \/>\n&lt;title&gt;Search the MyCo Knowledgebase&lt;\/title&gt;<br \/>\n&lt;meta http-equiv=\"Content-Type\" content=\"text\/html; charset=iso-8859-1\"&gt;<br \/>\n&lt;\/head&gt;<br \/>\n&lt;script&gt;<br \/>\nfunction search1(button) {<br \/>\ndocument.SearchForm1.submit();<br \/>\n} \u00a0 function search2(button) {<br \/>\ndocument.SearchForm2.submit();<br \/>\n}<br \/>\n&lt;\/script&gt;<\/code><\/code>&lt;body bgcolor=&#8221;#FFFFFF&#8221;&gt;<br \/>\n&lt;&gt;&lt;i&gt;&lt;font color=&#8221;#0000FF&#8221; size=&#8221;+1&#8243;&gt;&lt;b&gt;Search For Existing Issues&lt;\/b&gt;&lt;\/font&gt;&lt;\/i&gt;&lt;\/p&gt;<br \/>\n&lt;p&gt;This form is used to search MyCo&#8217;s knowledge base for existing issues. Either enter an issue number to search for a specific problem, or enter one or more keywords to search the entire database for open issues with the keywords.&lt;br&gt;&lt;\/p&gt;<br \/>\n&lt;hr&gt;&lt;br&gt;<\/p>\n<p><code><code><\/code><\/code>\u00a0 &lt;form name=&#8221;SearchForm1&#8243; ACTION=&#8221;http:\/\/myco.extraview.net\/myco\/ExtraView\/ev_api.action&#8221; METHOD=&#8221;GET&#8221;&gt;<br \/>\n&lt;INPUT NAME=&#8221;statevar&#8221; TYPE=&#8221;HIDDEN&#8221; VALUE=&#8221;SEARCH&#8221;&gt;<br \/>\n&lt;INPUT NAME=&#8221;p_PAGE_LENGTH&#8221; TYPE=&#8221;HIDDEN&#8221; VALUE=&#8221;10&#8243;&gt;<br \/>\n&lt;INPUT NAME=&#8221;p_RECORD_START&#8221; TYPE=&#8221;HIDDEN&#8221; VALUE=&#8221;1&#8243;&gt;<br \/>\n&lt;INPUT NAME=&#8221;p_TEMPLATE_FILE&#8221; TYPE=&#8221;HIDDEN&#8221; VALUE=&#8221;file.html&#8221;&gt;<\/p>\n<p><code><code><\/code><\/code>\u00a0 &lt;table width=&#8221;100%&#8221; border=&#8221;0&#8243; cellpadding=&#8221;2&#8243;&gt;<br \/>\n&lt;tr valign=&#8221;middle&#8221;&gt;<br \/>\n&lt;td width=&#8221;30%&#8221;&gt;<br \/>\n&lt;div align=&#8221;right&#8221;&gt;Search for an Issue #&lt;\/div&gt;<br \/>\n&lt;\/td&gt;<br \/>\n&lt;td&gt;<br \/>\n&lt;input type=&#8221;text&#8221; name=&#8221;p_id&#8221; size=&#8221;50&#8243; maxlength=&#8221;6&#8243;&gt;<br \/>\n&lt;input type=&#8221;button&#8221; name=&#8221;Submit2&#8243; value=&#8221;Search&#8221; onClick=&#8221;search1(this)&#8221;&gt;<br \/>\n&lt;\/td&gt;<br \/>\n&lt;\/tr&gt;<br \/>\n&lt;\/table&gt;<br \/>\n&lt;\/form&gt;<br \/>\n&lt;br&gt;&lt;hr&gt;&lt;br&gt;<br \/>\n&lt;form name=&#8221;SearchForm2&#8243; ACTION=http:\/\/myco.extraview.net\/myco\/ExtraView\/ev_api.action METHOD=&#8221;GET&#8221;&gt;<br \/>\n&lt;INPUT NAME=&#8221;user_id&#8221; TYPE=&#8221;HIDDEN&#8221; VALUE=&#8221;guest&#8221;&gt;<br \/>\n&lt;INPUT NAME=&#8221;password&#8221; TYPE=&#8221;HIDDEN&#8221; VALUE=&#8221;guest&#8221;&gt;<br \/>\n&lt;INPUT NAME=&#8221;statevar&#8221; TYPE=&#8221;HIDDEN&#8221; VALUE=&#8221;SEARCH&#8221;&gt;<br \/>\n&lt;INPUT NAME=&#8221;product_name&#8221; TYPE=&#8221;HIDDEN&#8221; VALUE=&#8221;OUR_PROD&#8221;&gt;<br \/>\n&lt;INPUT NAME=&#8221;status&#8221; TYPE=&#8221;HIDDEN&#8221; VALUE=&#8221;OPEN&#8221;&gt;<br \/>\n&lt;INPUT NAME=&#8221;p_PAGE_LENGTH&#8221; TYPE=&#8221;HIDDEN&#8221; VALUE=&#8221;100&#8243;&gt;<br \/>\n&lt;INPUT NAME=&#8221;p_RECORD_START&#8221; TYPE=&#8221;HIDDEN&#8221; VALUE=&#8221;1&#8243;&gt;<br \/>\n&lt;INPUT NAME=&#8221;p_TEMPLATE_FILE&#8221; TYPE=&#8221;HIDDEN&#8221; VALUE=&#8221;file.html&#8221;&gt; \u00a0 &lt;table width=&#8221;100%&#8221; border=&#8221;0&#8243; cellpadding=&#8221;2&#8243;&gt;<br \/>\n&lt;tr valign=&#8221;middle&#8221;&gt;<br \/>\n&lt;td width=&#8221;30%&#8221;&gt;<br \/>\n&lt;div align=&#8221;right&#8221;&gt;Search for keywords&lt;\/div&gt;<br \/>\n&lt;\/td&gt;<br \/>\n&lt;td&gt;<br \/>\n&lt;input type=&#8221;text&#8221; name=&#8221;p_keyword&#8221; size=&#8221;50&#8243; maxlength=&#8221;255&#8243;&gt;<br \/>\n&lt;input type=&#8221;button&#8221; name=&#8221;Submit&#8221; value=&#8221;Search&#8221; onClick=&#8221;search2(this)&#8221;&gt;<br \/>\n&lt;\/td&gt;<br \/>\n&lt;\/tr&gt;<br \/>\n&lt;\/table&gt; \u00a0 &lt;hr&gt; Copyright \u00a9 2002 ExtraView Corporation&lt;br&gt;<br \/>\nPowered by ExtraView&lt;br&gt;<br \/>\n&lt;\/form&gt; &lt;\/body&gt; &lt;\/html&gt;<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h3>Server-side HTML Templates<\/h3>\n<p>In order that the search will return neatly formatted HTML in the same style as the rest of your web site, you will create a server-side ExtraView template. Note the parameter in the source file named <span class=\"fixedWidthFont\">p_template_file<\/span> that points to the template. For example, we want to return from the search a report that looks as follows:<\/p>\n<p><img decoding=\"async\" style=\"width: 80%;\" src=\"\/v25\/extraview-media\/images\/api\/template_results2.png\" \/><\/p>\n<p>The source of the template file is as follows:<\/p>\n<table width=\"100%\">\n<tbody>\n<tr>\n<td><code>&lt;TABLE cellpadding=\"2\" cellspacing=\"2\" border=\"1\" bordercolor=\"#FFCCCC\"&gt;<br \/>\n&lt;TR valign=\"top\" bgcolor=\"#CCCCFF\"&gt;<br \/>\n\u200b \u00a0\u00a0 &lt;TD align=right width=80&gt;Defect #&lt;\/TD&gt;<br \/>\n\u200b \u00a0\u00a0 &lt;TD width=800&gt;__ID__&lt;\/TD&gt;<br \/>\n\u200b\u00a0 &lt;\/TR&gt;<br \/>\n\u200b\u00a0 &lt;TR valign=\"top\"&gt;<br \/>\n\u200b \u00a0\u00a0 &lt;TD align=right&gt;Title&lt;\/TD&gt;<br \/>\n\u200b \u00a0\u00a0 &lt;TD&gt;__SHORT_DESCR__&lt;\/TD&gt;<br \/>\n\u200b \u00a0 &lt;\/TR&gt;<br \/>\n\u200b\u00a0 &lt;TR valign=\"top\"&gt;<br \/>\n\u200b \u00a0\u00a0 &lt;TD align=right&gt;Product&lt;\/TD&gt;<br \/>\n\u200b \u00a0\u00a0 &lt;TD&gt;__PRODUCT_NAME__&lt;\/TD&gt;<br \/>\n\u200b\u00a0 &lt;\/TR&gt;<br \/>\n\u200b\u00a0 &lt;TR valign=\"top\"&gt;<br \/>\n\u200b \u00a0\u00a0 &lt;TD align=right&gt;Description&lt;\/TD&gt;<br \/>\n\u200b \u00a0\u00a0 &lt;TD&gt;__DESCRIPTION_TEXT__&lt;\/TD&gt;<br \/>\n\u200b\u00a0 &lt;\/TR&gt;<br \/>\n\u200b\u00a0 &lt;TR valign=\"top\"&gt;<br \/>\n\u200b \u00a0\u00a0 &lt;TD align=right&gt;Comments&lt;\/TD&gt;<br \/>\n\u200b \u00a0\u00a0 &lt;TD&gt;&lt;b&gt;__COMMENTS_USER__: __COMMENTS_TIMESTAMP__&lt;\/b&gt; &lt;br&gt; __COMMENTS_TEXT__ &lt;\/TD&gt;<br \/>\n\u200b\u00a0 &lt;\/TR&gt;<br \/>\n&lt;\/TABLE&gt; <\/code><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Note that server-side templates do not need to contain HTML. For example, if you want to output straight text for a CLI command such as evsearch, then a server-side template can be defined in exactly the same manner as for the HTML templates. For more information on server-side templates, please click <a href=\"v25\/manage-server-side-templates-1\/\">here<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A common requirement is to be able to integrate ExtraView seamlessly into your own web site, allowing your own users to use a subset of ExtraView\u2019s capabilities. Most often, these users will be anonymous within ExtraView (i.e. they will not have their own user name and password), but their user details will be trapped as&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":24223,"menu_order":3,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"_lmt_disableupdate":"no","_lmt_disable":"","_kad_blocks_custom_css":"","_kad_blocks_head_custom_js":"","_kad_blocks_body_custom_js":"","_kad_blocks_footer_custom_js":"","_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"footnotes":""},"class_list":["post-24227","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Static Web Page Access - Product Documentation<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/static-web-page-access-1\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Static Web Page Access - Product Documentation\" \/>\n<meta property=\"og:description\" content=\"A common requirement is to be able to integrate ExtraView seamlessly into your own web site, allowing your own users to use a subset of ExtraView\u2019s capabilities. Most often, these users will be anonymous within ExtraView (i.e. they will not have their own user name and password), but their user details will be trapped as...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/static-web-page-access-1\/\" \/>\n<meta property=\"og:site_name\" content=\"Product Documentation\" \/>\n<meta property=\"article:modified_time\" content=\"2025-02-24T23:43:40+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"9 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/static-web-page-access-1\/\",\"url\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/static-web-page-access-1\/\",\"name\":\"Static Web Page Access - Product Documentation\",\"isPartOf\":{\"@id\":\"https:\/\/docs.extraview.com\/v25\/#website\"},\"datePublished\":\"2024-02-15T22:53:34+00:00\",\"dateModified\":\"2025-02-24T23:43:40+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/static-web-page-access-1\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/static-web-page-access-1\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/static-web-page-access-1\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/docs.extraview.com\/v25\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"ExtraView 25\",\"item\":\"https:\/\/docs.extraview.com\/v25\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Application Programming Interface\",\"item\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Static Web Page Access\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/docs.extraview.com\/v25\/#website\",\"url\":\"https:\/\/docs.extraview.com\/v25\/\",\"name\":\"ExtraView Product Documentation\",\"description\":\"ExtraView Documentation\",\"publisher\":{\"@id\":\"https:\/\/docs.extraview.com\/v25\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/docs.extraview.com\/v25\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/docs.extraview.com\/v25\/#organization\",\"name\":\"ExtraView Corporation\",\"url\":\"https:\/\/docs.extraview.com\/v25\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/docs.extraview.com\/v25\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/docs-stg.extraview.com\/wp-content\/uploads\/2024\/03\/favicon.png\",\"contentUrl\":\"https:\/\/docs-stg.extraview.com\/wp-content\/uploads\/2024\/03\/favicon.png\",\"width\":512,\"height\":512,\"caption\":\"ExtraView Corporation\"},\"image\":{\"@id\":\"https:\/\/docs.extraview.com\/v25\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Static Web Page Access - Product Documentation","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/static-web-page-access-1\/","og_locale":"en_US","og_type":"article","og_title":"Static Web Page Access - Product Documentation","og_description":"A common requirement is to be able to integrate ExtraView seamlessly into your own web site, allowing your own users to use a subset of ExtraView\u2019s capabilities. Most often, these users will be anonymous within ExtraView (i.e. they will not have their own user name and password), but their user details will be trapped as...","og_url":"https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/static-web-page-access-1\/","og_site_name":"Product Documentation","article_modified_time":"2025-02-24T23:43:40+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/static-web-page-access-1\/","url":"https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/static-web-page-access-1\/","name":"Static Web Page Access - Product Documentation","isPartOf":{"@id":"https:\/\/docs.extraview.com\/v25\/#website"},"datePublished":"2024-02-15T22:53:34+00:00","dateModified":"2025-02-24T23:43:40+00:00","breadcrumb":{"@id":"https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/static-web-page-access-1\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/static-web-page-access-1\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/static-web-page-access-1\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/docs.extraview.com\/v25\/"},{"@type":"ListItem","position":2,"name":"ExtraView 25","item":"https:\/\/docs.extraview.com\/v25\/"},{"@type":"ListItem","position":3,"name":"Application Programming Interface","item":"https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/"},{"@type":"ListItem","position":4,"name":"Static Web Page Access"}]},{"@type":"WebSite","@id":"https:\/\/docs.extraview.com\/v25\/#website","url":"https:\/\/docs.extraview.com\/v25\/","name":"ExtraView Product Documentation","description":"ExtraView Documentation","publisher":{"@id":"https:\/\/docs.extraview.com\/v25\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/docs.extraview.com\/v25\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/docs.extraview.com\/v25\/#organization","name":"ExtraView Corporation","url":"https:\/\/docs.extraview.com\/v25\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/docs.extraview.com\/v25\/#\/schema\/logo\/image\/","url":"https:\/\/docs-stg.extraview.com\/wp-content\/uploads\/2024\/03\/favicon.png","contentUrl":"https:\/\/docs-stg.extraview.com\/wp-content\/uploads\/2024\/03\/favicon.png","width":512,"height":512,"caption":"ExtraView Corporation"},"image":{"@id":"https:\/\/docs.extraview.com\/v25\/#\/schema\/logo\/image\/"}}]}},"taxonomy_info":[],"featured_image_src_large":false,"author_info":{"display_name":"carl.koppel","author_link":"https:\/\/docs.extraview.com\/v25\/author\/carl-koppel\/"},"comment_info":0,"_links":{"self":[{"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/pages\/24227","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/comments?post=24227"}],"version-history":[{"count":0,"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/pages\/24227\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/pages\/24223"}],"wp:attachment":[{"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/media?parent=24227"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}