Skip to content

Udemy'nin apileri kullanılarak eğitmenlerin kendilerine bir araç yapması amacıyla başlanmış bir projedir.

License

Notifications You must be signed in to change notification settings

ysa01/UdemyApi

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

UdemyApi

Udemy'nin apileri kullanılarak eğitmenlerin kendilerine bir araç yapması amacıyla başlanmış bir projedir.

Örnek bir kursun sorularını çekmek

    static void Main(string[] args)
    {
        System.Console.WriteLine("Hello Udemy!");
        System.Console.WriteLine("Start Test rest request");

        ServiceUtil serviceUtil = new ServiceUtil(args[0]); //https://www.udemy.com/instructor/account/api/ Generate Instructor API Token

        var questions = serviceUtil.GetCourseQuestions("1287382"); //Course Id

        foreach (var item in questions)
        {
            System.Console.WriteLine(item.ToString());
            System.Console.WriteLine(new string('-', 30));
            System.Console.WriteLine("");
        }

        System.Console.ReadKey();

    }

About

Udemy'nin apileri kullanılarak eğitmenlerin kendilerine bir araç yapması amacıyla başlanmış bir projedir.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%