Giter VIP home page Giter VIP logo

Comments (4)

wranders avatar wranders commented on July 17, 2024

Sorry about the delay.

I checked with a fresh pull and everything seems to be working fine.
I tested this in a simple Console App:

using System;
using ESISharp;
using ESISharp.Enumerations;

namespace ESISharpTest
{
    class Program
    {
        private static ESIEve.Authenticated EsA;

        static void Main(string[] args)
        {
            EsA = new ESIEve.Authenticated(ClientID, SecretKey);
            EsA.SSO.SetGrantType(OAuthGrant.Authorization);
            EsA.SSO.SetAuthRouterFileDirectory(@"C:\Path\To\Folder\Containing\EveSSOAuthRouter\");
            EsA.SSO.VerifyCallbackProtocolRegistyKey();

            Console.Write("Enter character ID: ");
            int cid;
            
            if (int.TryParse(Console.ReadLine(), out cid))
            {
                CheckMail(cid);
                Console.ReadLine();
            } else {
                Console.Write("Invalid Input");
                Console.ReadLine();
            }
        }

        static void CheckMail(int CharacterID)
        {
            EsA.SSO.AddScope(Scope.Mail.ReadMail);
            var mail = EsA.Character.Mail.GetHeaders(CharacterID).Execute();
            Console.WriteLine(mail.Body);
        }
    }
}

As expected, the latest EveMail headers are printed to the console.

Can you give an example of what's not working for you?

from esisharp.

adgriff2 avatar adgriff2 commented on July 17, 2024

from esisharp.

wranders avatar wranders commented on July 17, 2024

Here in the next little bit, I'll be pushing an update to address the ToArray issue. Seems to be in a lot more methods than just mail related ones.

Thanks for the heads up!

from esisharp.

wranders avatar wranders commented on July 17, 2024

Fixed with 5f6e206. Well merge dev -> master once I go through everything else.

Sorry it's taken so long. Thanks for letting me know!

from esisharp.

Related Issues (10)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.