twilio-java icon indicating copy to clipboard operation
twilio-java copied to clipboard

A Java library for communicating with the Twilio REST API and generating TwiML.

Results 70 twilio-java issues
Sort by recently updated
recently updated
newest added

Feature: Add Error Response > TwilioServiceErrorResponse: > description: The error response from a Twilio service. > type: object > required: > - code > - httpStatusCode > - message >...

The RequestValidator test suite previously had only 11 basic test cases, making it difficult for developers to diagnose validation issues and understand expected behavior in edge cases. This PR significantly...

The `RequestValidator.validate` method was incorrectly decoding URL-encoded characters when manipulating ports, causing validation failures for URLs with encoded query parameters, paths, or user info. ## Problem When validating URLs with...

Thanks for assigning this issue to me. I'm starting to work on it and will keep this PR's description up to date as I form a plan and make progress....

The Content.md example file contained Java code with compilation errors that would prevent users from successfully using the provided example. **Issues fixed:** 1. **Variable scope error**: The `types` variable was...

This PR addresses critical build and tooling issues in the Twilio Java SDK that were blocking code quality checks and causing compatibility problems with modern Java versions. ## 🔧 Critical...

### Describe the bug The Twilio SDK allows its users to set different RequestConfig by including code like: ``` RequestConfig config = RequestConfig.custom() .setConnectionRequestTimeout(Timeout.ofMilliseconds(connectionRequestTimeout)) .setResponseTimeout(Timeout.ofMilliseconds(responseTimeout)) .setConnectionKeepAlive(Timeout.ofMilliseconds(connectionKeepAlive)) .build(); NetworkHttpClient httpClient =...

type: bug

### Describe the bug This code block in the Twilio class can throw an IllegalStateException: ```java /* * Ensures that the ExecutorService is shutdown when the JVM exits. */ static...

type: bug

# Fixes # added app endpoint type and its test case. ### Checklist - [x] I acknowledge that all my contributions will be made under the project's license - [...