Get users that speak specific language from VK - vk

I want to get list of users ids from VK api. I know city and language that is listed in users profiles.
I know how to get users by city - but what about language? How can i do it using VK API?

You can add atr lang in main request api https://vk.com/dev/api_requests
api

Related

Microsoft Teams graph api (get channels) does not return data in users default language it always returns data in english?

I have my teams client language setup in french, I see the general channel name change in french,
however when I use GRAPH REST API GET /teams/{id}/channels/{id} to query the channels for the logged in user it returns data to me in english and not french
does the API support language selected by the logged in user?
Unfortunately, the Microsoft Teams graph api does not support the function of language translation. This is because when you created the teams, it was already stored in the database in the default language (English), so when you call the API, you get it from the database The data is displayed in English, and Microsoft Teams graph api cannot translate it for you in real time.
Although the customer language of your team is set to French, this is only the language displayed on the page, and the data storage language of the back-end database is still the default English.

How to get Authenticated user's Google Ad Account ID using Google Ads API v0 using a REST API?

I have been trying to figure out after referring to their official documentation (Google Ads API Document) which is not clear enough
Here is what I have tried till now.
I have created an app where users can log in with their Google Ad words account. I need to fetch their Ad performance reports via REST API.
To make an API request to fetch performance reports, we need the Google Ad Words Account ID of the authenticated user. Currently, as I am testing it with my personal account, I can login to my Ad words Console and get the Ad Words Account ID. But, how do I fetch the Ad Words Account ID dynamically for other users who authenticate via my App?
I tried looking for a way in their official documentation. But I couldn't figure out.
Could someone help me with the REST API URL which needs to be called to fetch the authenticated user's Ad words Account ID.
In addition to previous answer, I guess this is what you are looking for:
https://developers.google.com/adwords/api/docs/guides/first-api-call#create_test_accounts
It explains how to setup Google Ad Words API and get your ID.
According to the documentation here Account overview, you need to list the customers to get the ID. For each user that logs in as long as they do not have access to multiple accounts you should get a single customer and their ID.
CustomerService
CustomerService provides information about your accounts. It has a
getCustomers() method that takes no arguments and returns a list of
Customer objects containing fields such as customerId, currencyCode,
and dateTimeZone. CustomerService also has a mutate() method that can
be used to update various attributes of a customer, including the
autoTaggingEnabled and conversionTrackingSetting fields.
If no clientCustomerId is specified in a request, the response will
contain multiple entries if more than one account is directly
accessible by the authenticated account.

how to create multi company group on facebook workplace using graph api

I have created an app in facebook workplace. Using app access token i want to create multi company group . As per documentaion to create group we should use
POST graph.facebook.com
/{community-id}/groups?
name={...}&
description={...}&
privacy=OPEN
So how we can create a multi company group ?
you can't create MCG through APIs.
The APIs are not available in the MCG, except few use cases like read the post on behalf of a member of the group.

Linkedin REST API retrieve status updates of a user

I'm trying to retrieve the status updates of the authenticated user with the REST API. Is there a way to do that? I only can find a way to retrieve the status updates of the companies the user has admin rights of.
It is no longer possible with the standard LinkedIn API (If you look at their REST console, you can see all the public methods: https://apigee.com/console/linkedin?apig_cc=1).
You now need to join their partner program in order to access additional API methods now: https://developer.linkedin.com/partner-programs

Searching for more than one user

I would like to use Graph API to search for users whose names are "John" or "Mark".
https://graph.facebook.com/search?q=john&type=user
https://graph.facebook.com/search?q=mark&type=user
Is it possible to receive those informations using only one request? Something like "q1=mark&q2=john" ?
You could use the batch API to group both requests in a single API call.
http://developers.facebook.com/docs/reference/api/batch/