我正在尝试将Pinterest集成到Android应用程序中,我想为特定用户检索所有引脚(显然在用户登录后)。这可以通过利用Pinterest发布的api来实现吗?非常感谢。
答案 0 :(得分:0)
是的,这是可能的,请在GitHub上查看Pinterest示例应用: link
示例代码:
class Program
{
static List<Animal> animals = new List<Animal>();
static void Main(string[] args)
{
animals.Add(new Animal() { Age = 3, Name = "Terry", Type = "Tiger" });
animals.Add(new Animal() { Age = 1, Name = "Bob", Type = "Badger" });
animals.Add(new Animal() { Age = 7, Name = "Alfie", Type = "Dog" });
GetList("Age").ForEach(Console.WriteLine);
Console.Read();
}
public static List<string> GetList(string property)
{
return animals.Select(o => o.GetType().GetProperty(property).GetValue(o).ToString()).ToList();
}
}
class Animal
{
public string Name { get; set; }
public string Type { get; set; }
public int Age { get; set; }
}
快乐的编码!