Graphql server responded with error 1675030 при выполнении запроса произошла ошибка фейсбук

Facebook is one of the largest social media platforms in the world and has been for quite a while now. However, as mature as the platform has become over time, it still isn’t immune to random bugs and glitches that can confuse the average user as to what’s wrong. 

In this article, we’re taking a look at the “Fix: Graphql server responded with error 1675030: error performing query” error on Facebook, its causes and what you can do to fix the problem. 


What causes this error?

The error can be triggered by a number of reasons including but not limited to:

  • Server outages at Facebook. 
  • Internet connectivity issues. 
  • Corrupt browser cache or cookies. 
  • Outdated Facebook app. 

Also read: Why does Facebook say no internet connection?


How to fix this?

Here are six fixes you can try out. 

Restart your device

Regardless of whether you’re on Android or iOS, restarting your phone or tablet can fix a bunch of seemingly random issues. So if you’re also experiencing issues with the app or website, try restarting your device first.


Check your internet

When you see an error like this, you should check if you’re connected to the internet. If you’re on WiFi, ensure a stable signal and an active internet connection. If you’re on mobile data, check to see if it’s enabled and if you have good network coverage.


Update the Facebook app

Another common reason why apps stop functioning on their own is that the version you’re running might be outdated. Head over to the Google Play Store or the Apple App Store and check for any updates for the Facebook app. If there are any, update the app and try again. 

What happens when you block someone on Facebook? 15 talking points


Glitches on Facebook’s end

If the app is continuously refusing to connect, chances are there is a glitch on Facebook’s end. Servers are often taken down for a little while for maintenance or sometimes face outages. 

There isn’t a lot that you can do about this, so the best thing will be to kick back and take a break. You can check whether or not Facebook is experiencing any problems by heading over to the Meta status and outage page. 


Clear the cache (Android)

If you’re on an Android device, you can clear the Facebook app’s cache to eliminate any corrupt files that might hamper the app’s functionality. 

Why is Facebook not working? 7 Fixes | Candid.Technology

  • Head over to the phone settings and tap on Apps & notifications.
  • Tap on View all apps.
  • Scroll and find Facebook in the list. Tap to proceed. 

Why is Facebook not working? 7 Fixes | Candid.Technology

  • Tap on Storage & cache.
  • Tap the Clear cache button to remove the cache.

Now try launching the app, and it should work just fine.


Clear your browser’s data

Corrupt files in your cache or otherwise can cause this error as well. Clear them out to see if you can get Chrome to work.

Step 1: Type in chrome://settings/clearBrowserData in your browser’s address bar and hit Enter.

How to fix 'YouTube not working' issue? | Candid.Technology

Step 2: Select the cache and cookies options and make sure the Time range is set to All time. Click on the Clear now button to clear out all the data. 

How to fix 'YouTube not working' issue? | Candid.Technology

Also read: What does the green dot mean on Facebook?

Facebook is the most popular social media platform in today’s market. While the company aims to offer a mostly bug-free experience to its users, many users have started receiving random error messages in the past few days. if you are among the users seeing the ‘Error performing query’ problem on Facebook, then here are the possible fixes you can use.

Error Message:

GraphQLError: GraphQL server responded with error 1675030: Error performing query.

What is the ‘Error performing query’ issue?

The ‘Error performing query’ issue is a server-sided problem that many users are facing when they try to interact with facebook’s marketing tools as well as marketplace tools. Users have reported that they are unable to get in touch with sellers despite trying from multiple different accounts.

Users are also facing this issue when posting new posts in groups as well as when they try to get in touch with classified postings. If you are someone who has encountered this issue recently and would like to fix it then check out some common fixes that you can try below.

5 ways to fix the ‘Error performing query’ issue

Check out the various methods to solve the ‘Error performing query’ on Facebook marketplace.

1) Log out and log back into your account

This might seem like a basic one but it helps reset facebook’s cache with your browser. This can clear out any existing files that might be causing issues with your browser interacting with Facebook. If your browser was trying to use previously cached files to create new tickets with Facebook then it is likely the reason you are facing this error on Facebook.

2) Clear your Cookies and Cache manually

If you are using a desktop system to access Facebook and logging out and logging back in hasn’t solved the issue for you, then you should try clearing the cache and cookies of your browser manually. Let’s take a look at how you can do this for your device.

Note: Clearing your cookies and cache manually will log you out of most of the services you use with your browser. It is highly recommended that you not only backup your data but also create a list of your passwords so that you do not face any issues logging back into your accounts.

3) Update your browser software or Facebook app

Whether you’re using the Facebook mobile app or a desktop browser, ensure that it is updated to the latest version. Facebook developers are constantly working in the background to squash bugs and give you the best browsing experience possible.

These bugs are often optimized and fixed for the latest browsers and app versions which means that they can end up being incompatible with previous updates. If you are using an outdated version of the Facebook app or your desktop browser, then we highly recommend you to update it to the latest version.

4) Restart Your Device

5) Uninstall & reinstall the app (mobile users only)

I have an hybrid app on ionic v1. It has facebook login functionality. Have used following plugin for that — https://github.com/jeduan/cordova-plugin-facebook4. But after August the facebook login wont work and started giving following error —
Facebook error: SERVER_ERROR: [code] 1675030 [message]: Error performing
query. [extra]: null ionic

When I checked my Facebook developer app review page, it shows —
enter image description here

It is also showing «user_friends» permission which am not asking for at all through my code —
facebookConnectPlugin.login(['email', 'public_profile'],fbLoginSuccess, fbLoginError);

For what should I submit it for review or should I even submit it?
The app_id and app_name variables are correct. Am using cordova-android — 6.2.2. Not sure what is causing the error. Anyone?

asked Sep 20, 2018 at 7:37

Karan Rao's user avatar

0

I don’t think you have to submit your app for review if you only request public_profile and email as these are approved by default.

I also faced the same issue in my ionic-3 app as you face. In my case, The issue was caused because I tried to use a testing facebook account in which email was not confirmed.

I confirmed the email and tried again it works now, this may help you.

answered Sep 30, 2018 at 15:53

Nirush's user avatar

Try this, you can fix this issue — SERVER_ERROR: [code] 1675030 [message]: Error performing query. [extra]:

«react-native»: «0.66.3»,
«react-native-fbsdk-next»: «^5.0.0» or «react-native-fbsdk»

import { LoginManager, AccessToken } from ‘react-native-fbsdk’;

on_fbLogin (){

LoginManager.logInWithPermissions([‘public_profile’, ’email’, ‘user_friends’]).then((result)=>{
if (result.isCancelled) {
console.log(‘Login cancelled’);
} else {
AccessToken.getCurrentAccessToken().then((data) => {
const accessToken = data.accessToken;
console.log(«accessToken»,accessToken)
const responseInfoCallback = async(error, results) => {
if (error) {
console.log(‘Error fetching data=’, error.toString());
} else {
console.log(‘Success fetching data=’, results);
}
};
const infoRequest = new GraphRequest(
‘/me’,
{
accessToken,
parameters: {
fields: {
string: ’email,name,first_name,middle_name,last_name’,
},
},
},
responseInfoCallback,
);
new GraphRequestManager().addRequest(infoRequest).start();
});
}
}).catch((error)=>{
console.log(error)
})
}

I am using Facebook login in android.
Code:

callbackManager = CallbackManager.Factory.create();
    LoginButton loginButton = (LoginButton) this.findViewById(R.id.login_button);
    loginButton.setReadPermissions("email", "public_profile");
    loginButton.registerCallback(callbackManager, new FacebookCallback<LoginResult>() {
        @Override
        public void onSuccess(LoginResult loginResult) {
            // App code
            Log.println(Log.ASSERT, "FB", "inicio session ");
        }

        @Override
        public void onCancel() {
            Log.println(Log.ASSERT, "FB", "OP NO completada");
            // App code
        }

        @Override
        public void onError(FacebookException exception) {
            Log.println(Log.ASSERT, "FB", " Errro de sesion ");
            exception.printStackTrace();
            // App code
        }
    });

but always getting the following error:

SERVER_ERROR: [code] 1675030 [message]: Error performing query.
[extra]: Errors while executing operation «ProxyAuthAppLoginQuery»: At
Query.proxy_auth_app_login: Failed to resolve field. W/System.err:
at
com.facebook.login.LoginManager.onActivityResult(LoginManager.java:190)
W/System.err: at
com.facebook.login.LoginManager$1.onActivityResult(LoginManager.java:159)
W/System.err: at
com.facebook.internal.CallbackManagerImpl.onActivityResult(CallbackManagerImpl.java:82)
W/System.err: at
com.procibernetica.moca.MainActivity.onActivityResult(MainActivity.java:130)
W/System.err: at
android.app.Activity.dispatchActivityResult(Activity.java:5423)
W/System.err: at
android.app.ActivityThread.deliverResults(ActivityThread.java:3401)
W/System.err: at
android.app.ActivityThread.handleSendResult(ActivityThread.java:3448)
W/System.err: at
android.app.ActivityThread.access$1300(ActivityThread.java:138)
W/System.err: at
android.app.ActivityThread$H.handleMessage(ActivityThread.java:1284)
W/System.err: at
android.os.Handler.dispatchMessage(Handler.java:102) W/System.err:
at android.os.Looper.loop(Looper.java:149) W/System.err: at
android.app.ActivityThread.main(ActivityThread.java:5061)
W/System.err: at java.lang.reflect.Method.invokeNative(Native
Method) W/System.err: at
java.lang.reflect.Method.invoke(Method.java:515) W/System.err: at
com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:787)
W/System.err: at
com.android.internal.os.ZygoteInit.main(ZygoteInit.java:603)
W/System.err: at dalvik.system.NativeStart.main(Native Method)

I’ve added the folowing permissions.

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

Возможно, вам также будет интересно:

  • Grandum3 ошибка что это
  • Grandstream wave ошибка 404
  • Grand стиральная машина ошибка e05
  • Grand theft auto vc eoctato ошибка
  • Grand theft auto v ошибка сервера

  • Понравилась статья? Поделить с друзьями:
    0 0 голоса
    Рейтинг статьи
    Подписаться
    Уведомить о
    guest

    0 комментариев
    Старые
    Новые Популярные
    Межтекстовые Отзывы
    Посмотреть все комментарии