Mixed Content
This report was deprecated on November 28th and is no longer maintained. For crawls completed before this date, the report contains the expected data. However, for crawls completed after November 28th, the report will appear empty.
A new Pages with Mixed Content Warnings Report is now available and provides enhanced functionality. This new report is generated for all crawls completed after November 28th. Please use the new Mixed Content Report to access the latest data on mixed content issues.
Priority: None
Impact: Neutral
What issues it may cause
Browsers and search engines may attempt to fetch the resources on the HTTPS protocol, and if they work the the user-experience and rendering/indexing of the pages may be unaffected.
How do you fix it
The resources should be checked to see if they can be served through HTTPs, and all references updated to use the HTTPS URLs.
What is the positive impact
Crawler and browsers will be able to render and index these pages correctly, potentially resulting in a better user-experience, improved rankings, traffic and conversions.
How to fetch the data for this report template
You will need to run a crawl for report template to generate report. When report has been generated and you have crawl id you can fetch data for the report using the following query:
- Query
- Variables
- cURL
query GetReportStatForCrawl(
$crawlId: ObjectID!
$reportTemplateCode: String!
$after: String
) {
getReportStat(
input: {crawlId: $crawlId, reportTemplateCode: $reportTemplateCode}
) {
crawlLinks(after: $after, reportType: Basic) {
nodes {
urlTo
urlFromTitle
urlFrom
urlFromDeeprank
urlToDeeprank
urlFromHttps
urlToHttps
linkType
attrRel
attrType
}
totalCount
pageInfo {
endCursor
hasNextPage
}
}
}
}
{"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"http_scripts_on_https_pages"}
curl -X POST -H "Content-Type: application/json" -H "apollographql-client-name: docs-example-client" -H "apollographql-client-version: 1.0.0" -H "x-auth-token: YOUR_API_SESSION_TOKEN" --data '{"query":"query GetReportStatForCrawl( $crawlId: ObjectID! $reportTemplateCode: String! $after: String ) { getReportStat( input: {crawlId: $crawlId, reportTemplateCode: $reportTemplateCode} ) { crawlLinks(after: $after, reportType: Basic) { nodes { urlTo urlFromTitle urlFrom urlFromDeeprank urlToDeeprank urlFromHttps urlToHttps linkType attrRel attrType } totalCount pageInfo { endCursor hasNextPage } } } }","variables":{"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"http_scripts_on_https_pages"}}' https://api.lumar.io/graphql