facebook graph api making the app scrap the url automatically android
up vote
0
down vote
favorite
iam trying to make facebook Scrap my url automatically when i share it
instead of making it manually by this page
https://developers.facebook.com/tools/debug/og/object/
and i used volley to achieve it
but it didnt work and give me an error
so the code is
String fbLink = "https://graph.facebook.com/";
StringRequest postRequest = new StringRequest(Request.Method.POST, fbLink,
new Response.Listener<String>()
{
@Override
public void onResponse(String response) {
// response
Log.d("Response", response);
}
},
new Response.ErrorListener()
{
@Override
public void onErrorResponse(VolleyError error) {
// error
Log.d("Error.Response", error.toString());
}
}
) {
@Override
protected Map<String, String> getParams()
{
Map<String, String> params = new HashMap<String, String>();
params.put("id", Link);
params.put("scrape", "true");
params.put("access_token", "53423443434234534");
return params;
}
};
queue.add(postRequest);
and the error which come is
E/Volley: [819] BasicNetwork.performRequest: Unexpected response code 400 for https://graph.facebook.com/
updated
the error is
{"error":{"message":"Invalid OAuth access token.","type":"OAuthException","code":190,"fbtrace_id":"DNqMWPkaAy5"}}
updated 2
fixed wwhen i knew the error it was because of the access token
here is the topic that helped me
Android Volley - BasicNetwork.performRequest: Unexpected response code 400
thank u
android facebook facebook-graph-api
|
show 1 more comment
up vote
0
down vote
favorite
iam trying to make facebook Scrap my url automatically when i share it
instead of making it manually by this page
https://developers.facebook.com/tools/debug/og/object/
and i used volley to achieve it
but it didnt work and give me an error
so the code is
String fbLink = "https://graph.facebook.com/";
StringRequest postRequest = new StringRequest(Request.Method.POST, fbLink,
new Response.Listener<String>()
{
@Override
public void onResponse(String response) {
// response
Log.d("Response", response);
}
},
new Response.ErrorListener()
{
@Override
public void onErrorResponse(VolleyError error) {
// error
Log.d("Error.Response", error.toString());
}
}
) {
@Override
protected Map<String, String> getParams()
{
Map<String, String> params = new HashMap<String, String>();
params.put("id", Link);
params.put("scrape", "true");
params.put("access_token", "53423443434234534");
return params;
}
};
queue.add(postRequest);
and the error which come is
E/Volley: [819] BasicNetwork.performRequest: Unexpected response code 400 for https://graph.facebook.com/
updated
the error is
{"error":{"message":"Invalid OAuth access token.","type":"OAuthException","code":190,"fbtrace_id":"DNqMWPkaAy5"}}
updated 2
fixed wwhen i knew the error it was because of the access token
here is the topic that helped me
Android Volley - BasicNetwork.performRequest: Unexpected response code 400
thank u
android facebook facebook-graph-api
what´s the point of scraping it right when you share it? maybe you are trying to do something you could do in a better way?
– luschn
Nov 21 at 23:36
iam using facebook applinks to share my links to facebook .. i mean my users links like ... www.example.com/users/index.php?=userid ... and make the people go to my app when then open it from facebook browser but the problem is its not working until i scrap it
– Muhammad
Nov 21 at 23:39
what means "not working"? it should work, and i don´t think scraping a link before sharing is a good solution.
– luschn
Nov 22 at 8:16
thank u for your response but it did and worked when i scraped it and i fixed it so could u tell me why its not a good solution
– Muhammad
Nov 22 at 11:46
i know that it worked, but that does not mean it´s a good solution ;) - i can only help you if you tell me what you mean with "not working". that´s not a description we can work with.
– luschn
Nov 22 at 17:04
|
show 1 more comment
up vote
0
down vote
favorite
up vote
0
down vote
favorite
iam trying to make facebook Scrap my url automatically when i share it
instead of making it manually by this page
https://developers.facebook.com/tools/debug/og/object/
and i used volley to achieve it
but it didnt work and give me an error
so the code is
String fbLink = "https://graph.facebook.com/";
StringRequest postRequest = new StringRequest(Request.Method.POST, fbLink,
new Response.Listener<String>()
{
@Override
public void onResponse(String response) {
// response
Log.d("Response", response);
}
},
new Response.ErrorListener()
{
@Override
public void onErrorResponse(VolleyError error) {
// error
Log.d("Error.Response", error.toString());
}
}
) {
@Override
protected Map<String, String> getParams()
{
Map<String, String> params = new HashMap<String, String>();
params.put("id", Link);
params.put("scrape", "true");
params.put("access_token", "53423443434234534");
return params;
}
};
queue.add(postRequest);
and the error which come is
E/Volley: [819] BasicNetwork.performRequest: Unexpected response code 400 for https://graph.facebook.com/
updated
the error is
{"error":{"message":"Invalid OAuth access token.","type":"OAuthException","code":190,"fbtrace_id":"DNqMWPkaAy5"}}
updated 2
fixed wwhen i knew the error it was because of the access token
here is the topic that helped me
Android Volley - BasicNetwork.performRequest: Unexpected response code 400
thank u
android facebook facebook-graph-api
iam trying to make facebook Scrap my url automatically when i share it
instead of making it manually by this page
https://developers.facebook.com/tools/debug/og/object/
and i used volley to achieve it
but it didnt work and give me an error
so the code is
String fbLink = "https://graph.facebook.com/";
StringRequest postRequest = new StringRequest(Request.Method.POST, fbLink,
new Response.Listener<String>()
{
@Override
public void onResponse(String response) {
// response
Log.d("Response", response);
}
},
new Response.ErrorListener()
{
@Override
public void onErrorResponse(VolleyError error) {
// error
Log.d("Error.Response", error.toString());
}
}
) {
@Override
protected Map<String, String> getParams()
{
Map<String, String> params = new HashMap<String, String>();
params.put("id", Link);
params.put("scrape", "true");
params.put("access_token", "53423443434234534");
return params;
}
};
queue.add(postRequest);
and the error which come is
E/Volley: [819] BasicNetwork.performRequest: Unexpected response code 400 for https://graph.facebook.com/
updated
the error is
{"error":{"message":"Invalid OAuth access token.","type":"OAuthException","code":190,"fbtrace_id":"DNqMWPkaAy5"}}
updated 2
fixed wwhen i knew the error it was because of the access token
here is the topic that helped me
Android Volley - BasicNetwork.performRequest: Unexpected response code 400
thank u
android facebook facebook-graph-api
android facebook facebook-graph-api
edited Nov 22 at 0:17
asked Nov 21 at 23:35
Muhammad
64
64
what´s the point of scraping it right when you share it? maybe you are trying to do something you could do in a better way?
– luschn
Nov 21 at 23:36
iam using facebook applinks to share my links to facebook .. i mean my users links like ... www.example.com/users/index.php?=userid ... and make the people go to my app when then open it from facebook browser but the problem is its not working until i scrap it
– Muhammad
Nov 21 at 23:39
what means "not working"? it should work, and i don´t think scraping a link before sharing is a good solution.
– luschn
Nov 22 at 8:16
thank u for your response but it did and worked when i scraped it and i fixed it so could u tell me why its not a good solution
– Muhammad
Nov 22 at 11:46
i know that it worked, but that does not mean it´s a good solution ;) - i can only help you if you tell me what you mean with "not working". that´s not a description we can work with.
– luschn
Nov 22 at 17:04
|
show 1 more comment
what´s the point of scraping it right when you share it? maybe you are trying to do something you could do in a better way?
– luschn
Nov 21 at 23:36
iam using facebook applinks to share my links to facebook .. i mean my users links like ... www.example.com/users/index.php?=userid ... and make the people go to my app when then open it from facebook browser but the problem is its not working until i scrap it
– Muhammad
Nov 21 at 23:39
what means "not working"? it should work, and i don´t think scraping a link before sharing is a good solution.
– luschn
Nov 22 at 8:16
thank u for your response but it did and worked when i scraped it and i fixed it so could u tell me why its not a good solution
– Muhammad
Nov 22 at 11:46
i know that it worked, but that does not mean it´s a good solution ;) - i can only help you if you tell me what you mean with "not working". that´s not a description we can work with.
– luschn
Nov 22 at 17:04
what´s the point of scraping it right when you share it? maybe you are trying to do something you could do in a better way?
– luschn
Nov 21 at 23:36
what´s the point of scraping it right when you share it? maybe you are trying to do something you could do in a better way?
– luschn
Nov 21 at 23:36
iam using facebook applinks to share my links to facebook .. i mean my users links like ... www.example.com/users/index.php?=userid ... and make the people go to my app when then open it from facebook browser but the problem is its not working until i scrap it
– Muhammad
Nov 21 at 23:39
iam using facebook applinks to share my links to facebook .. i mean my users links like ... www.example.com/users/index.php?=userid ... and make the people go to my app when then open it from facebook browser but the problem is its not working until i scrap it
– Muhammad
Nov 21 at 23:39
what means "not working"? it should work, and i don´t think scraping a link before sharing is a good solution.
– luschn
Nov 22 at 8:16
what means "not working"? it should work, and i don´t think scraping a link before sharing is a good solution.
– luschn
Nov 22 at 8:16
thank u for your response but it did and worked when i scraped it and i fixed it so could u tell me why its not a good solution
– Muhammad
Nov 22 at 11:46
thank u for your response but it did and worked when i scraped it and i fixed it so could u tell me why its not a good solution
– Muhammad
Nov 22 at 11:46
i know that it worked, but that does not mean it´s a good solution ;) - i can only help you if you tell me what you mean with "not working". that´s not a description we can work with.
– luschn
Nov 22 at 17:04
i know that it worked, but that does not mean it´s a good solution ;) - i can only help you if you tell me what you mean with "not working". that´s not a description we can work with.
– luschn
Nov 22 at 17:04
|
show 1 more comment
1 Answer
1
active
oldest
votes
up vote
0
down vote
fixed wwhen i knew the error it was because of the access token
here is the topic that helped me
Android Volley - BasicNetwork.performRequest: Unexpected response code 400
add a comment |
Your Answer
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',
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%2f53421935%2ffacebook-graph-api-making-the-app-scrap-the-url-automatically-android%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
up vote
0
down vote
fixed wwhen i knew the error it was because of the access token
here is the topic that helped me
Android Volley - BasicNetwork.performRequest: Unexpected response code 400
add a comment |
up vote
0
down vote
fixed wwhen i knew the error it was because of the access token
here is the topic that helped me
Android Volley - BasicNetwork.performRequest: Unexpected response code 400
add a comment |
up vote
0
down vote
up vote
0
down vote
fixed wwhen i knew the error it was because of the access token
here is the topic that helped me
Android Volley - BasicNetwork.performRequest: Unexpected response code 400
fixed wwhen i knew the error it was because of the access token
here is the topic that helped me
Android Volley - BasicNetwork.performRequest: Unexpected response code 400
answered Nov 22 at 0:18
Muhammad
64
64
add a comment |
add a 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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f53421935%2ffacebook-graph-api-making-the-app-scrap-the-url-automatically-android%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
what´s the point of scraping it right when you share it? maybe you are trying to do something you could do in a better way?
– luschn
Nov 21 at 23:36
iam using facebook applinks to share my links to facebook .. i mean my users links like ... www.example.com/users/index.php?=userid ... and make the people go to my app when then open it from facebook browser but the problem is its not working until i scrap it
– Muhammad
Nov 21 at 23:39
what means "not working"? it should work, and i don´t think scraping a link before sharing is a good solution.
– luschn
Nov 22 at 8:16
thank u for your response but it did and worked when i scraped it and i fixed it so could u tell me why its not a good solution
– Muhammad
Nov 22 at 11:46
i know that it worked, but that does not mean it´s a good solution ;) - i can only help you if you tell me what you mean with "not working". that´s not a description we can work with.
– luschn
Nov 22 at 17:04