I can't get Zoom API Key - web-services

I'm trying to get Zoom API Key. So I tried to go to the marketplace.zoom.us page, but I get a blank page. It seems that this problem exists in certain countries, including the Arab countries. I tried several browsers but the same problem, it shows me a blank page. This problem seems new. Because before, I was able to access this page and get the Zoom API Key. Did you try to access this page from an Arab country, and did you face the same problem?
The page appears on mobile, but the mobile version does not provide access to the Zoom API Key.
I need to get Zoom API Key in order to link my website to Zoom. But I can't access the marketplace.zoom.us page. Is there another way to get Zoom API Key?

It works fine , try creating a new zoom account and then create a jwt app.
Or try using VPN instead.
https://github.com/MalikHamzaJaved/ZoomClient
you can only use my zoomapi client , complete api integrated in .net standard

Related

Getting started using Microsoft Academic Graph API

I am trying to run some queries on Microsoft Academic Graph using their API. I cannot figure out what to use for the Ocp-Apim-Subscription-Key. (I have seen this question and it did not help.) When I try to run queries I get the following message (401: access denied): Access denied due to invalid subscription key. Make sure you are subscribed to an API you are trying to call and provide the right key.. This happens either using curl on the command line:
curl -v -X GET "https://westus.api.cognitive.microsoft.com\
/academic/v1.0/evaluate?\
expr=stochastic&model=latest&count=10&offset=0&attributes=Id" \
-H "Ocp-Apim-Subscription-Key: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
or using the API testing console.
So what am I using for the Ocp-Apim-Subscription-Key? (Not a lot of Xs!) I've tried two things. First, I've tried using the key that you can get by going to https://labs.cognitive.microsoft.com/en-us/project-academic-knowledge and clicking on the subscribe link (either Key 1 or Key 2).
Second, I've tried using a key generated by going to the cognitive services on my azure portal, and trying to create a subscription to a suitable service. However, nothing that I can see matches the Academic Search API that I want to use, so I used a generic bing search subscription.
Neither of these grants me access to the API. What am I missing?
EDIT:
After first response by #ali-heikal, I tried going to here: https://dev.labs.cognitive.microsoft.com/docs/services/56332331778daf02acc0a50b/operations/5951f78363b4fb31286b8ef4/console. A red warning box appears at top of page: You are not subscribed to this API and will get a '401 Access Denied' response. To subscribe, go to the Products page and click on the desired product containing this API.. If I go to the Products page, and go on to the Project Academic Knowledge - Preview page, I am offered the chance to subscribe. Clicking subscribe takes me to a generic MS sign in (I am signed in, choose that account), I am taken to a page which says:
We're unable to complete your request
Microsoft account is experiencing technical problems. Please try again later.
So this does not work for me. Where is it documented that I should use this endpoint? Can someone provide further instructions on how to use it?
EDIT2:
There is this answer which describes using a different endpoint: https://stackoverflow.com/a/49318405/54557. However, changing my curl request to use this does not work (with same Access denied error).
You're using the wrong endpoint, since you're using the Preview API, then you should use the Preview endpoint as well.
It should work if you follow those steps:
Regenerate a key from here (do not use an old key this time) and confirm by clicking the Yes, regenerate this key button
Open the Testing Console from here
Insert the key you just generated into the Ocp-Apim-Subscription-Key field
Insert the following into the Request body field: expr=Composite(AA.AuN=='ali heikal')&count=2&attributes=Ti,Y,CC,AA.AuN,AA.AuId
Click the Send button
Check the Entity Attributes documentation here to understand the attributes I included following the Evaluate Method documentation here
I think the problem is that you are using an old key with the wrong endpoint and attribute values.

FB does not allow using FB share dialog with Posting through Graph api

Whe I am trying to get permission for publish_actions for my facebook app, it asks few points. One of those points is -
My app does not use the Facebook Feed Dialog or the Facebook Share Dialog to publish content
This means that If I want to get the publish_actions permission for using graph api to post on a user's wall I will have to remove all the FB share dialogs used in every place of my site.
After reading above I decided not to use publish_actions permission at all. But then I got a chance to look into change.org website. They are actually using both kynd of sharing. On the campaigns, they post to your wall via Facebook Graph API and on their blogs they are using facebook share dialog. So I am bit confused that can we use both simultaneously or not? And if not, how the change.org is able to do it?

Using PowerBI tiles in another application

having obtained a list of dashboards and then the tiles associated with those dashboards , the links that I get back do not seem to work I am left with a spinning indicator when I try to view in the browser IE or Edge.
url format https://app.powerbi.com/embed?dashboardId=< some UUID>&tileId=< some UUID>
has this worked for others..
If you get an infinite spinning wheel, it's usually because you did not provide authentication credentials needed to load the tile. Each tile you render needs to be rendered on behalf of a specific user and pass their user credentials. Your page needs to obtain and pass an access token to the iFrame after you instantiate the iFrame (i.e. setting src='foo' is not enough). You need to follow that with a post message containing an access token for the user wishing to view the tile.
You can read our blog post (see Integrating tiles into Applications) here: http://blogs.msdn.com/b/powerbidev/archive/2015/09/23/power-bi-api-updates-roundup.aspx
We have a sample that shows how to do it as well:
https://github.com/PowerBI/Integrate-a-tile-into-an-app
Let me know if you still can't get it to work after following all the steps.

Finding the owner of an app with the API key

Someone built an app for the organization I work for but no one can remember who it was and we need to make changes to the app. The only information we have is the API key. We've tried navigating to the apps page by adding the key at the of http://www.facebook.com/apps/application.php?id=XXXX but we're redirected back to our website. Is there a way we could figure out who administers the app? Maybe using Graph API?
I'm almost positive you can not use that. I would navigate to the app itself, and on the bottom of the page inside on the right side, for "ctrl+f" for find, and click "Report/Contact this App" and then send a message to the developer.

Get new profile cover with sdk

Is it possible to get and to change the new porfile cover (mine or my friends' profil cover) with the sdk php or JS ?
It is possible to get the Facebook's user cover image using the Graph API. You have to add 'fields=cover' to the user request. The response is an array of fields id, source, and offset_y. You need an access token for this.
You cannot update the cover photo using the API, only retrieve it.
http://graph.facebook.com/[USER_ID]?fields=cover
It's still not possible with the current APIs exposed by Facebook.