-
Notifications
You must be signed in to change notification settings - Fork 150
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
problem with AvailablePhoneNumbers.all #96
Comments
Also just hit this |
Another error for same resource
problem is that twilio provides what "subresource types" are available per country per doc I would expect to get at least |
Should you find yourself hitting this issue, and you don't really need to have a specific number, you can use ExTwilio.IncomingPhoneNumber.create(area_code: "415") (I just spent far too long figuring that out, so I figured I'd save someone else the time). |
When running I still can't find this documented anywhere, but after digging into the code I found that the UrlGenerator does understand the country and type specific requests that the AvailablePhoneNumber endpoint returns. The only way to make the For example: # US Local Numbers
ExTwilio.AvailablePhoneNumber.all(iso_country_code: "US", type: "Local")
# US Local Numbers for an area code
ExTwilio.AvailablePhoneNumber.all(iso_country_code: "US", type: "Local", area_code: "321") |
This is the error I get with
ExTwilio.AvailablePhoneNumber.all()
The problem seems to be because of the way
ExTwilio
is expecting the body to be. The response body has the following structure:Looks like the implementation would try to look at available_phone_numbers key under the response but the result does not have that.
Also, I am not sure how we would go about fixing this esp. it would be probably good to generate
ExTwilio.AvailablePhoneNumbers.US.all()
and soThe text was updated successfully, but these errors were encountered: