Page Title: Authorization

  • This webpage makes use of the TITLE meta tag - this is good for search engine optimization.

Page Description: The Iconfinder API is a HTTP JSON API and allows you to programatically access resources on the service, such as icons, icon sets, categories, styles, authors, etc.

  • This webpage makes use of the DESCRIPTION meta tag - this is good for search engine optimization.

Page Keywords:

  • This webpage DOES NOT make use of the KEYWORDS meta tag - whilst search engines nowadays do not put too much emphasis on this meta tag including them in your website does no harm.

Page Text: Powered by Authorization The Iconfinder API uses API keys to authenticate the requests. You can create an application and manage your API keys under your account settings . The API key should be sent as an HTTP header with every request in the format Authorization: Bearer [API_KEY]. Here are some examples that perform a simple GET request to the categories endpoint. cURL Python curl -H "Authorization: Bearer hkc67veeMhd4QPQ2rbznsWIEOfynqC6uGzMWEVraG3FFOg0rYkZl2eZzLW8TXEZV" -X GET https://api.iconfinder.com/v4/categories import requests BASE_ENDPOINT = 'https://api.iconfinder.com/v4/' API_SECRET = "hkc67veeMhd4QPQ2rbznsWIEOfynqC6uGzMWEVraG3FFOg0rYkZl2eZzLW8TXEZV" # Keep this secret def get_categories(): # Create the categories endpoint categories_endpoint = BASE_ENDPOINT + 'categories' # Create the authorization header (and any additional ones if needed) headers = {'Authorization': 'Bearer ' + API_SECRET} # Make the GET request. response = requests.get(categories_endpoint, headers=headers) return response.content # Try it out print(get_categories()) Trouble-shooting The provided API key is invalid. Please check that your API key is the one listed in your account . 401 Authorization header not set. Please check that the header contains the Authorization field when making a request to the API. It's needed for all requests. 400 Authorization failed, check if the api_key is set correctly. The Authorization field was found in the header, but the API key was not set correctly. Please double-check the syntax. 400 🚧 Keep your API keys secret Do not share your API keys in publicly accessible areas or put them in version control or client-side code. It's a good practice to set secrets like the API key as environment variable and then read it in the code. 📘 Use an API key per application If you are integrating the Iconfinder API in multiple applications, it's recommended to generate separate API keys for each one. The same is valid if you are working in multiple environments, e.g. development, staging and production.

  • This webpage has 321 words which is between the recommended minimum of 250 words and the recommended maximum of 2500 words - GOOD WORK.

Header tags:

  • It appears that you are using header tags - this is a GOOD thing!

Spelling errors:

  • This webpage has 1 words which may be misspelt.

Possibly mis-spelt word: Iconfinder

Suggestion: Icon finder
Suggestion: Icon-finder
Suggestion: Confider

Broken links:

  • This webpage has no broken links that we can detect - GOOD WORK.

Broken image links:

  • This webpage has no broken image links that we can detect - GOOD WORK.

CSS over tables for layout?:

  • It appears that this page uses DIVs for layout this is a GOOD thing!

Last modified date:

  • We were unable to detect what date this page was last modified

Images that are being re-sized:

  • This webpage has no images that are being re-sized by the browser - GOOD WORK.

Images that are being re-sized:

  • This webpage has no images that are missing their width and height - GOOD WORK.

Mobile friendly:

  • After testing this webpage it appears NOT to be mobile friendly - this is NOT a good thing!

Links with no anchor text:

  • This webpage has 1 links that do not contain anchor text - this is NOT a good thing.

W3C Validation:

Print friendly?:

  • It appears that the webpage does NOT use CSS stylesheets to provide print functionality - this is a BAD thing.

GZIP Compression enabled?:

  • It appears that the serrver does NOT have GZIP Compression enabled - this is a NOT a good thing!