For the same url, Google's PageSpeed Insights gives different scores on Mobile and Desktop. I am trying to understand how to differentiate the device level data while using the PageSpeed Insights API call. Or does the PageSpeed Insights API call give results at an overall level? Can someone please help me with it?
Page Speed API - Differentiate Mobile and Desktop
634 Views Asked by Gokul At
1
There are 1 best solutions below
Related Questions in PAGESPEED-INSIGHTS
- How to disable link rel="preload" on responsive?
- PSInsights error Lighthouse unable to reliably load page request. Make sure testing correct URL and server is responding to requests. Status code: 410
- Page speed insight shows FID & INP not applicable in desktop & mobile
- React.lazy doesn't improve lighthouse or PageSpeed Insights score. Is it a problem actually?
- PagespeedInsights shows defer offscreen images even when image is lazy loaded?
- If the Core Web Vitals assessment has passed and is all green, do I need to worry about the next section, "Diagnose Performance Issues"?
- Page Speed Insights Failure
- how can i fix Largest contentful paint (lcp) issue for mobile
- How to optimize largest contentful paint time of responsive image that fills the whole screen
- "Unattributable" in reduce javascript excution time in Page Speed Insights tool? What does it mean and how to fix?
- Why PageSpeed shows Unattributable JavaScript execution time?
- Pagespeed Insights doesn't use gzip
- Poor CLS score in page speed insight and Lighthouse
- CLS issue reported in Search console but not in Pagespeed insights
- PageSpeed Insight is showing a low performance for an Angular SPA app
Related Questions in CORE-WEB-VITALS
- Spying on useReportWebVitals from next web vitals in vitest
- How do I dig deeper in the Performance panel for a function call that consumes a long time but 90% of the time was just waiting?
- Is the web vitals js sdk/library sending reports to RUM in a delayed period?
- How do I check more details of a long task in my Web Devtools Performance panel?
- Is there any possible way to exempt a page or a group of pages to be counted under origin?
- What do the values in the attribution object mean when analyzing element-level INP scores with Google's Web Vitals library?
- First Input Delay (FID) and Interaction to Next Paint (INP) showing N/A in the google pagespeed for a Website
- How to further mitigate bad web vitals LCP results?
- How to Improve Core Web Vitals Affected by AdSense Scripts?
- Module not found: Can't resolve 'next/web-vitals'
- Poor CLS score in page speed insight and Lighthouse
- Avoid an Excessive DOM Size in case of forms where country dropdown having 220 country list
- How to measure First Screen Paint?
- Measure Interaction to Next Paint (INP) with automated clicking on all elements
- Still receiving no First Input Delay (FID) or Interaction to Next Paint (INP) across website under Pagespeed Insights
Related Questions in GOOGLE-PAGESPEED-INSIGHTS-API
- PSInsights error Lighthouse unable to reliably load page request. Make sure testing correct URL and server is responding to requests. Status code: 410
- Page speed insight shows FID & INP not applicable in desktop & mobile
- PageSpeed Insights not working on mobile, but works on desktop
- How to retrieve 'Properly size images' opportunity information from JSON returned by Google PageSpeed Insights API?
- Google IP for PageSpeed Insights and issues with DNS = wrong results
- Deciding the language of Page Speed Insights
- Whats wrong with my PageSpeed Appscript code?
- Is there a quota for each IP address and is there anything we can do about it?
- Google Pagespeed insights on local host not working
- Exceeding Page Speed API Limits using async. How can i slow it down?
- How to Solve > "Reduce the impact of third-party code Third-party code blocked the main thread for 560 ms"?
- Issue getting full page Screenshot of website using PageSpeedApi and Google Apps Script
- Does PSI uses client IP to access the requested URL?
- Why is Lighthouse data reported via the PageSpeed Insights API consistently different from data reported by the Lighthouse CLI?
- How can i get webpage network title DOMContentLoaded by curl
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The
strategyparameter of the PSI API is used to differentiate between desktop and mobile results. Note that when the parameter is omitted,STRATEGY_UNSPECIFIEDdefaults to desktop.The PSI API docs have an API explorer that lets you run queries and see the results in a web UI. Here are a couple of examples:
Desktop:
Mobile:
If you only have the PSI API results and want to know whether it relates to desktop or mobile data, you can look at the the
lhr.lighthouseResult.configSettings.formFactorproperty, which will be'desktop'or'mobile'(where the response object is the valuelhr).See the
ConfigSettingsdocs for more info on theformFactorfield and other metadata about the results.