I have an application still in use, which uses Version 1.9 of the YouTube .Net API. It still works for older YouTube accounts but I'm porting it to Version 3 of the API to support new YouTube accounts.
Last time I looked, the application had logged over 14,000 uploads. This information was available at the original, but now deprecated, Google Dashboard. I haven't seen any statistics for over six months and have no idea how it's travelling.
The new developer's console used for Version 3 of the API does not show any data or information for my existing application.
Does anyone know where I can find the upload statistics associated with my older application which uses Version 1.9 of the YouTube API?
Not sure if I always had the wrong URL but it appears to be working perfectly now. The previous URL was missing the SSL component. 31,000 uploads!
https://code.google.com/apis/youtube/dashboard/gwt/index.html
Related
I would like to develop a Facebook app. I am only familiar with C# and .NET Core. Will I experience any limitations since the business SDK is not available for .NET? I am not very familiar with Facebook development.
The Business SDK relies on the Graph API, which is also public.
Directly accessing the API is very, very common, the documentation is decent, and going that route is web-based, which works from any client you've got.
https://developers.facebook.com/docs/graph-api/
I have used the Facebook Csharp SDK recently to upload hour long videos. This is a process that runs every hour and uploads a video. During this development, I found there are bugs in the SDK and I fixed it and uploaded a pull request. But I am not sure if anyone maintains that branch. But you can get the uploaded code from my github here
https://github.com/hoquem1/facebook-csharp-sdk
If you want the parent branch, you can see where I forked it from.
You need to get your permission and Tokens properly. Directions are in facebook for developer page. For Facebook Graph Api, I used the v8.0. If you need some documentations here are some useful links below. Follow the breadcrumbs..
https://developers.facebook.com/
https://developers.facebook.com/docs/video-api/getting-started
This should get you started.
I am working on a C# MVC solution which needs to support the uploading of 1000s of scanned .PDF survey forms onto a system and then extract the data from each survey; in order to extract hand-written checkboxes I need to use the AWS Textract API. More information on my project can be found here: AWS textract with hand-written checkboxes
My problem is when I downloaded the AWS SDK for .NET I noticed that .Textract is not fully available at the minute for .NET
My question being, is there any other way apart from the AWS .NET SDK that would allow me to implement AWS Textracts checkbox feature into my .NET system? Neither Googles Vision OCR API or Azures Read API support checkbox extraction unfortunately.
I have a C# web application and I want clients to allow files insert/ update/ delete files with automatic authentication using google api client library. My first question is whether it is possible possible or not using "Service account" or any other technique.
I have started things like:
Enabled 2 APIs Drive API and Admin SD
Created a project in the Google Developers Console
Created API keys and OAuth 2.0 client IDs for the project
Installed PM> Install-Package Google.Apis.Drive.v2 for my web app. The dll version is showing v4.0.30319 and
my .net framework is 4.0
If you want to modify a user's Drive, you will need the user to be at least connected and also that he gives to you the permissions to do so.
The best way to learn how to do this is the Google Drive API, they provide a good start-up and a lot of samples for the tasks you ask for : Google Drive REST API, .NET quickstart.
If you still hits problems, there is also others way to learn : a simple google research gives good results.
For exemple, Daimto have a tutorial for exactly what you need :
Authentication
Retrieve files informations
Upload, update, delete files
Finally a project sample
If you still hit a problem, a little research helps a lot, then ask question here.
I have recently found that the Twitter API V1 is no longer working and I need to migrate to V1.1. I am getting the following message:
"The Twitter REST API v1 is no longer active. Please migrate to API v1.1. https://dev.twitter.com/docs/api/1.1/overview."
http://search.twitter.com/search.atom?q=Twitter&rpp=30
However, after reading all the documentation and realising that I need to use OAuth with this new version I cannot find any C# code to use in ASP.net as a starting point. What I am looking to do is search for a list of keywords and download all tweets for this keyword. It was working up until last month using API v1. Does anyone have any support material that shows this type of solution? The only ones I can see are downloading and displaying a user's timeline.
Thanks.
There are several open-source .NET libraries that would be great places to check out.
TweetSharp - GitHub repository
Twitterizer (no longer updated, but code is still valid) - GitHub repository
TwitterVB (no longer updated, but code is still valid) - GitHub repository
(Full disclosure: TwitterVB is the library that I wrote. I recommend you start with TweetSharp).
I'm novice when it comes to using API's with C# apps, and I decided to start a windows 8 Modern UI application. I've looked for information about how to integrate facebook into a project using the facebook API, and I found some useful answers, but some things are still unclear to me...
I've not found any official Facebook API for C#, I created an developer acount on Facebook but when i want to create a project using it, there is no choice for a c# application.
I've searched the Internet and found this : https://github.com/facebook-csharp-sdk/facebook-windows8-sample
I downloaded it and put the app's id I got from Facebook on it, but it doesn't work. My question is simple: Is there any official API with documentation or a website where I can get real and exact information for it?
The Official SDK from Facebook is only for PHP, Javascript, iOS and Android.
For the .NET world, there is the Facebook C# SDK which you have already found. You can do everything with it, including full Windows 8 Apps with Facebook integration.
The main site is at http://CSharpSDK.org/