how to make api call to amazon elastic transcoder pipeline in java?
I am not able to figure out how to make api calls to amazon elastic transcoder pipeline in java.What should be the base url for the service call or should i make the pipelines manually using the console and create jobs through my code.
java rest amazon-elastic-transcoder
add a comment |
I am not able to figure out how to make api calls to amazon elastic transcoder pipeline in java.What should be the base url for the service call or should i make the pipelines manually using the console and create jobs through my code.
java rest amazon-elastic-transcoder
I have gone through the documentation docs.aws.amazon.com/elastictranscoder/latest/developerguide/… , still unable to figure it out
– SaranshK21
Nov 16 '18 at 7:36
add a comment |
I am not able to figure out how to make api calls to amazon elastic transcoder pipeline in java.What should be the base url for the service call or should i make the pipelines manually using the console and create jobs through my code.
java rest amazon-elastic-transcoder
I am not able to figure out how to make api calls to amazon elastic transcoder pipeline in java.What should be the base url for the service call or should i make the pipelines manually using the console and create jobs through my code.
java rest amazon-elastic-transcoder
java rest amazon-elastic-transcoder
asked Nov 16 '18 at 7:13
SaranshK21SaranshK21
182
182
I have gone through the documentation docs.aws.amazon.com/elastictranscoder/latest/developerguide/… , still unable to figure it out
– SaranshK21
Nov 16 '18 at 7:36
add a comment |
I have gone through the documentation docs.aws.amazon.com/elastictranscoder/latest/developerguide/… , still unable to figure it out
– SaranshK21
Nov 16 '18 at 7:36
I have gone through the documentation docs.aws.amazon.com/elastictranscoder/latest/developerguide/… , still unable to figure it out
– SaranshK21
Nov 16 '18 at 7:36
I have gone through the documentation docs.aws.amazon.com/elastictranscoder/latest/developerguide/… , still unable to figure it out
– SaranshK21
Nov 16 '18 at 7:36
add a comment |
1 Answer
1
active
oldest
votes
You could refer to the API Reference docs and create your own client using any HTTP library, but ideally, you would use the Java SDK for AmazonElasticTranscoderClient
, not create your own REST clients.
Specifically, you would want the createPipeline(CreatePipelineRequest request)
method
The endpoints for all AWS services are listed on a single page
Thanks for your quick response, highly appreciable. Can I find an example or snippet somewhere?
– SaranshK21
Nov 16 '18 at 7:35
Yes, there are links to example Java code in the API reference page
– cricket_007
Nov 16 '18 at 7:51
elastictranscoder.elastictranscoder.us-east-1.amazonaws.com:443/… . This is the base url I am hitting upon but no response
– SaranshK21
Nov 16 '18 at 8:59
First, I have never used this service. Second, I doubt putting twiceelastictranscoder.elastictranscoder
is correct. Somehow, you need to reference your actual account info, too
– cricket_007
Nov 16 '18 at 9:13
Its working for me..thanks for the help
– SaranshK21
Nov 16 '18 at 9:45
|
show 1 more comment
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53333080%2fhow-to-make-api-call-to-amazon-elastic-transcoder-pipeline-in-java%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You could refer to the API Reference docs and create your own client using any HTTP library, but ideally, you would use the Java SDK for AmazonElasticTranscoderClient
, not create your own REST clients.
Specifically, you would want the createPipeline(CreatePipelineRequest request)
method
The endpoints for all AWS services are listed on a single page
Thanks for your quick response, highly appreciable. Can I find an example or snippet somewhere?
– SaranshK21
Nov 16 '18 at 7:35
Yes, there are links to example Java code in the API reference page
– cricket_007
Nov 16 '18 at 7:51
elastictranscoder.elastictranscoder.us-east-1.amazonaws.com:443/… . This is the base url I am hitting upon but no response
– SaranshK21
Nov 16 '18 at 8:59
First, I have never used this service. Second, I doubt putting twiceelastictranscoder.elastictranscoder
is correct. Somehow, you need to reference your actual account info, too
– cricket_007
Nov 16 '18 at 9:13
Its working for me..thanks for the help
– SaranshK21
Nov 16 '18 at 9:45
|
show 1 more comment
You could refer to the API Reference docs and create your own client using any HTTP library, but ideally, you would use the Java SDK for AmazonElasticTranscoderClient
, not create your own REST clients.
Specifically, you would want the createPipeline(CreatePipelineRequest request)
method
The endpoints for all AWS services are listed on a single page
Thanks for your quick response, highly appreciable. Can I find an example or snippet somewhere?
– SaranshK21
Nov 16 '18 at 7:35
Yes, there are links to example Java code in the API reference page
– cricket_007
Nov 16 '18 at 7:51
elastictranscoder.elastictranscoder.us-east-1.amazonaws.com:443/… . This is the base url I am hitting upon but no response
– SaranshK21
Nov 16 '18 at 8:59
First, I have never used this service. Second, I doubt putting twiceelastictranscoder.elastictranscoder
is correct. Somehow, you need to reference your actual account info, too
– cricket_007
Nov 16 '18 at 9:13
Its working for me..thanks for the help
– SaranshK21
Nov 16 '18 at 9:45
|
show 1 more comment
You could refer to the API Reference docs and create your own client using any HTTP library, but ideally, you would use the Java SDK for AmazonElasticTranscoderClient
, not create your own REST clients.
Specifically, you would want the createPipeline(CreatePipelineRequest request)
method
The endpoints for all AWS services are listed on a single page
You could refer to the API Reference docs and create your own client using any HTTP library, but ideally, you would use the Java SDK for AmazonElasticTranscoderClient
, not create your own REST clients.
Specifically, you would want the createPipeline(CreatePipelineRequest request)
method
The endpoints for all AWS services are listed on a single page
edited Nov 16 '18 at 7:53
answered Nov 16 '18 at 7:18
cricket_007cricket_007
83.8k1147117
83.8k1147117
Thanks for your quick response, highly appreciable. Can I find an example or snippet somewhere?
– SaranshK21
Nov 16 '18 at 7:35
Yes, there are links to example Java code in the API reference page
– cricket_007
Nov 16 '18 at 7:51
elastictranscoder.elastictranscoder.us-east-1.amazonaws.com:443/… . This is the base url I am hitting upon but no response
– SaranshK21
Nov 16 '18 at 8:59
First, I have never used this service. Second, I doubt putting twiceelastictranscoder.elastictranscoder
is correct. Somehow, you need to reference your actual account info, too
– cricket_007
Nov 16 '18 at 9:13
Its working for me..thanks for the help
– SaranshK21
Nov 16 '18 at 9:45
|
show 1 more comment
Thanks for your quick response, highly appreciable. Can I find an example or snippet somewhere?
– SaranshK21
Nov 16 '18 at 7:35
Yes, there are links to example Java code in the API reference page
– cricket_007
Nov 16 '18 at 7:51
elastictranscoder.elastictranscoder.us-east-1.amazonaws.com:443/… . This is the base url I am hitting upon but no response
– SaranshK21
Nov 16 '18 at 8:59
First, I have never used this service. Second, I doubt putting twiceelastictranscoder.elastictranscoder
is correct. Somehow, you need to reference your actual account info, too
– cricket_007
Nov 16 '18 at 9:13
Its working for me..thanks for the help
– SaranshK21
Nov 16 '18 at 9:45
Thanks for your quick response, highly appreciable. Can I find an example or snippet somewhere?
– SaranshK21
Nov 16 '18 at 7:35
Thanks for your quick response, highly appreciable. Can I find an example or snippet somewhere?
– SaranshK21
Nov 16 '18 at 7:35
Yes, there are links to example Java code in the API reference page
– cricket_007
Nov 16 '18 at 7:51
Yes, there are links to example Java code in the API reference page
– cricket_007
Nov 16 '18 at 7:51
elastictranscoder.elastictranscoder.us-east-1.amazonaws.com:443/… . This is the base url I am hitting upon but no response
– SaranshK21
Nov 16 '18 at 8:59
elastictranscoder.elastictranscoder.us-east-1.amazonaws.com:443/… . This is the base url I am hitting upon but no response
– SaranshK21
Nov 16 '18 at 8:59
First, I have never used this service. Second, I doubt putting twice
elastictranscoder.elastictranscoder
is correct. Somehow, you need to reference your actual account info, too– cricket_007
Nov 16 '18 at 9:13
First, I have never used this service. Second, I doubt putting twice
elastictranscoder.elastictranscoder
is correct. Somehow, you need to reference your actual account info, too– cricket_007
Nov 16 '18 at 9:13
Its working for me..thanks for the help
– SaranshK21
Nov 16 '18 at 9:45
Its working for me..thanks for the help
– SaranshK21
Nov 16 '18 at 9:45
|
show 1 more comment
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53333080%2fhow-to-make-api-call-to-amazon-elastic-transcoder-pipeline-in-java%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I have gone through the documentation docs.aws.amazon.com/elastictranscoder/latest/developerguide/… , still unable to figure it out
– SaranshK21
Nov 16 '18 at 7:36