Skip to content
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

Closed
techgaun opened this issue May 14, 2018 · 4 comments
Closed

problem with AvailablePhoneNumbers.all #96

techgaun opened this issue May 14, 2018 · 4 comments
Labels

Comments

@techgaun
Copy link
Contributor

techgaun commented May 14, 2018

This is the error I get with ExTwilio.AvailablePhoneNumber.all()

** (Protocol.UndefinedError) protocol Enumerable not implemented for nil. This protocol is implemented for: Date.Range, File.Stream, Function, GenEvent.Stream, HashDict, HashSet, IO.Stream, List, Map, MapSet, Range, Stream
    (elixir) lib/enum.ex:1: Enumerable.impl_for!/1
    (elixir) lib/enum.ex:141: Enumerable.reduce/3
    (elixir) lib/stream.ex:1411: Stream.do_enum_resource/6
    (elixir) lib/enum.ex:1919: Enum.reverse/1
    (elixir) lib/enum.ex:2588: Enum.to_list/1
    (elixir) lib/enum.ex:1163: Enum.into/2
    (ex_twilio) lib/ex_twilio/resources/available_phone_number.ex:20: ExTwilio.AvailablePhoneNumber.all/1

The problem seems to be because of the way ExTwilio is expecting the body to be. The response body has the following structure:

{
	"uri": "/2010-04-01/Accounts/AC6fc00e901b08cf09d865ba437f8ae0d1/AvailablePhoneNumbers.json",
	"countries": [{
		"country_code": "IL",
		"country": "Israel",
		"uri": "/2010-04-01/Accounts/AC6fc00e901b08cf09d865ba437f8ae0d1/AvailablePhoneNumbers/IL.json",
		"beta": false,
		"subresource_uris": {
			"local": "/2010-04-01/Accounts/AC6fc00e901b08cf09d865ba437f8ae0d1/AvailablePhoneNumbers/IL/Local.json",
			"toll_free": "/2010-04-01/Accounts/AC6fc00e901b08cf09d865ba437f8ae0d1/AvailablePhoneNumbers/IL/TollFree.json",
			"mobile": "/2010-04-01/Accounts/AC6fc00e901b08cf09d865ba437f8ae0d1/AvailablePhoneNumbers/IL/Mobile.json"
		}
	}, {
		"country_code": "US",
		"country": "United States",
		"uri": "/2010-04-01/Accounts/AC6fc00e901b08cf09d865ba437f8ae0d1/AvailablePhoneNumbers/US.json",
		"beta": false,
		"subresource_uris": {
			"local": "/2010-04-01/Accounts/AC6fc00e901b08cf09d865ba437f8ae0d1/AvailablePhoneNumbers/US/Local.json",
			"toll_free": "/2010-04-01/Accounts/AC6fc00e901b08cf09d865ba437f8ae0d1/AvailablePhoneNumbers/US/TollFree.json"
		}
	}]
}

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 so

@john-griffin
Copy link
Contributor

Also just hit this

@mjaric
Copy link
Contributor

mjaric commented Jan 12, 2019

Another error for same resource

Exception:

    ** (MatchError) no match of right hand side value: {:error, %{"code" => 20404, "message" => "The requested resource /2010-04-01/Accounts/ACxxxxxxxxxxxxxxxxxxxxxxxxxxxx/AvailablePhoneNumbers/RS/Mobile.json was not found", "more_info" => "https://www.twilio.com/docs/errors/20404", "status" => 404}, 404}
        (ex_twilio) lib/ex_twilio/result_stream.ex:42: ExTwilio.ResultStream.fetch_page/3
        (elixir) lib/stream.ex:1361: Stream.do_resource/5
        (elixir) lib/enum.ex:1919: Enum.reverse/1
        (elixir) lib/enum.ex:2588: Enum.to_list/1
        (elixir) lib/enum.ex:1163: Enum.into/2

problem is that twilio provides what "subresource types" are available per country per doc

I would expect to get at least {:error, %{code: 12345, ....} instead of my process to explode!

@danielberkompas danielberkompas pinned this issue Jan 17, 2019
@danielberkompas danielberkompas unpinned this issue Jan 26, 2019
@photomattmills
Copy link

Should you find yourself hitting this issue, and you don't really need to have a specific number, you can use IncomingPhoneNumber.create/2 and supply an area_code, like so:

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).

@LWCoder
Copy link

LWCoder commented Jul 25, 2021

When running ExTwilio.AvailablePhoneNumber.all() the error referenced in the original issue above still occurs. @mjaric is correct that this is because the returned data from Twilio isn't what ex_twilio expects as it is a list of countries and types of phone numbers (Local, Mobile, Tollfree) instead of the numbers themselves.

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 .all() function work is to provide the two correct options, even though none are explicitly required. More options can be added to filter the results, but the first two must always be provided.

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")

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

6 participants