-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change the url endpoint of the API #7
Change the url endpoint of the API #7
Conversation
@@ -1,7 +1,7 @@ | |||
require 'faraday' | |||
require 'json' | |||
|
|||
API_VERIFY_URL = 'https://api.emailhunter.co/v2/email-verifier?' | |||
API_VERIFY_URL = 'https://api.hunter.io/v2/email-verifier?' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Style/MutableConstant: Freeze mutable objects assigned to constants.
Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.
@@ -1,7 +1,7 @@ | |||
require 'faraday' | |||
require 'json' | |||
|
|||
API_SEARCH_URL = 'https://api.emailhunter.co/v2/domain-search?' | |||
API_SEARCH_URL = 'https://api.hunter.io/v2/domain-search?' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Style/MutableConstant: Freeze mutable objects assigned to constants.
Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.
@@ -1,7 +1,7 @@ | |||
require 'faraday' | |||
require 'json' | |||
|
|||
API_COUNT_URL = 'https://api.emailhunter.co/v2/email-count?' | |||
API_COUNT_URL = 'https://api.hunter.io/v2/email-count?' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Style/MutableConstant: Freeze mutable objects assigned to constants.
Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.
thanks! |
Hello,
The endpoint url of email hunter as change and the gem doesn't work anymore.
I have change the API_XXXX_URL for each class.
I don't know if I have to change the version or something in the readme.